forked from moonrepo/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
119 lines (113 loc) · 3.05 KB
/
Cargo.toml
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
116
117
118
119
[workspace]
resolver = "2"
members = [
"crates/*",
"legacy/core/*",
# Languages
"legacy/bun/*",
"legacy/deno/*",
"legacy/javascript/*",
"legacy/node/*",
"legacy/rust/*",
"legacy/system/*",
"legacy/typescript/*",
]
exclude = ["tests/fixtures", "wasm/test-plugin"]
default-members = ["crates/cli"]
[workspace.dependencies]
async-recursion = "1.1.1"
async-trait = "0.1.83"
cached = "0.54.0"
chrono = { version = "0.4.38", features = ["serde"] }
cd_env = "0.2.0"
ci_env = "0.3.0"
clap = { version = "4.5.21", default-features = false, features = [
"std",
"error-context",
] }
clap_complete = "4.5.38"
compact_str = { version = "0.8.0", default-features = false, features = [
"serde",
] }
console = "0.15.8"
convert_case = "0.6.0"
dirs = "5.0.1"
futures = "0.3.31"
indexmap = "2.6.0"
md5 = "0.7.0"
miette = "7.2.0"
once_cell = "1.20.1"
pathdiff = "0.2.2"
petgraph = { version = "0.6.5", default-features = false, features = [
"serde-1",
] }
relative-path = { version = "1.9.3" }
regex = { version = "1.11.0", default-features = false, features = [
"std",
"perf",
] }
reqwest = { version = "0.12.9", default-features = false, features = [
"rustls-tls-native-roots",
# We don't use openssl but its required for musl builds
"native-tls-vendored",
] }
rustc-hash = "2.0.0"
scc = "2.2.5"
schematic = { version = "0.17.6", default-features = false, features = [
"schema",
] }
serial_test = "3.2.0"
semver = "1.0.23"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
starbase = { version = "0.9.4" }
starbase_archive = { version = "0.8.9", default-features = false, features = [
"miette",
"tar-gz",
] }
starbase_events = "0.6.4"
starbase_sandbox = "0.7.6"
starbase_shell = "0.5.10"
starbase_styles = { version = "0.4.4", features = ["relative-path"] }
starbase_utils = { version = "0.8.12", default-features = false, features = [
"editor-config",
"miette",
] }
tera = { version = "1.20.0", features = ["preserve_order"] }
thiserror = "1.0.64"
tokio = { version = "1.41.1", default-features = false, features = [
"macros",
"process",
"rt-multi-thread",
"rt",
"signal",
"time",
"tracing",
] }
tokio-util = "0.7.12"
tracing = "0.1.40"
uuid = { version = "1.11.0", features = ["v4"] }
# proto/plugin related
extism = "=1.8.0"
extism-pdk = "1.3.0"
proto_core = "0.43.6"
proto_installer = "0.7.1"
system_env = "0.6.1"
version_spec = "0.7.0"
warpgate = "0.19.0"
warpgate_api = "0.10.1"
warpgate_pdk = "0.8.1"
# proto_core = { path = "../proto/crates/core" }
# proto_installer = { path = "../proto/crates/installer" }
# 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"]