-
-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathCargo.toml
More file actions
115 lines (110 loc) · 3.18 KB
/
Cargo.toml
File metadata and controls
115 lines (110 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[workspace]
resolver = "3"
members = ["crates/*", "legacy/core/*"]
exclude = ["tests/fixtures", "wasm/test-plugin"]
default-members = ["crates/cli"]
[workspace.dependencies]
async-recursion = "1.1.1"
async-trait = "0.1.89"
cached = "0.56.0"
chrono = { version = "0.4.44", features = ["serde"] }
cd_env = "0.3.1"
ci_env = "0.4.1"
clap = { version = "4.5.60", default-features = false, features = [
"derive",
"std",
"error-context",
] }
clap_complete = "4.5.66"
compact_str = { version = "0.9.0", default-features = false, features = [
"serde",
] }
convert_case = "0.10.0"
daggy = { version = "0.9.0", features = ["serde-1"] }
dirs = "6.0.0"
futures = "0.3.31"
indexmap = "2.13.0"
iocraft = "0.7.18"
md5 = "0.8.0"
miette = "7.6.0"
pathdiff = "0.2.3"
petgraph = { version = "0.8.3", default-features = false, features = [
"serde-1",
] }
relative-path = { version = "2.0.1" }
regex = { version = "1.12.3", default-features = false, features = [
"std",
"perf",
] }
reqwest = { version = "0.13.2", default-features = false, features = [
"rustls",
# We don't use openssl but its required for musl builds
"native-tls-vendored",
] }
rustc-hash = "2.1.1"
scc = "3.6.9"
schematic = { version = "0.19.4", default-features = false, features = [
"schema",
] }
serial_test = "3.4.0"
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sha2 = "0.10.9"
starbase = { version = "0.10.9" }
starbase_archive = { version = "0.12.4", default-features = false, features = [
"miette",
"tar-all",
"zip-all",
] }
starbase_args = { version = "0.1.7" }
starbase_console = { version = "0.6.22", features = ["miette"] }
starbase_id = { version = "0.3.2", features = ["miette", "schematic"] }
starbase_sandbox = "0.10.5"
starbase_shell = "0.10.8"
starbase_styles = { version = "0.6.1", features = ["relative-path"] }
starbase_utils = { version = "0.12.6", default-features = false, features = [
"editor-config",
"glob-cache",
"miette",
] }
tera = { version = "1.20.1", features = ["preserve_order"] }
thiserror = "2.0.18"
tokio = { version = "1.50.0", default-features = false, features = [
"macros",
"process",
"rt-multi-thread",
"rt",
"signal",
"sync",
"time",
"tracing",
] }
tokio-util = "0.7.18"
tracing = "0.1.44"
url = "2.5.8"
uuid = { version = "1.22.0", features = ["v4"] }
# proto/plugin related
extism = "=1.13.0"
extism-pdk = "1.4.1"
proto_core = "0.55.5"
proto_pdk_api = "0.31.8"
proto_pdk_test_utils = "0.43.7"
system_env = "0.9.1"
version_spec = "0.10.2"
warpgate = "0.29.3"
warpgate_api = "0.17.3"
warpgate_pdk = "0.16.2"
# proto_core = { path = "../proto/crates/core" }
# proto_pdk_api = { path = "../proto/crates/pdk-api" }
# proto_pdk_test_utils = { path = "../proto/crates/pdk-test-utils" }
# system_env = { path = "../proto/crates/system-env" }
# version_spec = { path = "../proto/crates/version-spec" }
# warpgate = { path = "../proto/crates/warpgate" }
# warpgate_api = { path = "../proto/crates/warpgate-api" }
# warpgate_pdk = { path = "../proto/crates/warpgate-pdk" }
[workspace.lints.clippy]
# Very noisy, lots of false positives!
assigning_clones = "allow"
[workspace.metadata.cargo-shear]
ignored = ["serde"]