forked from moonrepo/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (55 loc) · 1.73 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
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core/*",
# Languages
"crates/bun/*",
"crates/deno/*",
"crates/go/*",
"crates/node/*",
"crates/php/*",
"crates/python/*",
"crates/ruby/*",
"crates/rust/*",
"crates/system/*",
"crates/typescript/*",
# Next-gen
"nextgen/*"
]
exclude = ["tests/fixtures"]
default-members = ["crates/cli"]
[workspace.dependencies]
async-trait = "0.1.71"
cached = "0.44.0"
chrono = { version = "0.4.26", features = ["serde"] }
ci_env = "0.2.0"
clap = { version = "4.3.11", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.3.2"
console = "0.15.7"
criterion = { version = "0.5.1", features = ["async_tokio"] }
miette = "5.9.0"
once_cell = "1.18.0"
once_map = "0.4.6"
pathdiff = "0.2.1"
petgraph = { version = "0.6.3", default-features = false, features = ["serde-1"] }
proto_cli = "0.12.0"
relative-path = { version = "1.8.0", features = ["serde"] }
regex = "1.9.0"
# We don't use openssl but its required for musl builds
reqwest = { version = "0.11.18", default-features = false, features = ["rustls-tls", "native-tls-vendored"] }
rustc-hash = "1.1.0"
schematic = { version = "0.11.0", default-features = false, features = ["schema", "yaml"] }
semver = "1.0.17"
serde = { version = "1.0.166", features = ["derive"] }
serde_json = "1.0.100"
serde_yaml = "0.9.22"
starbase = "0.1.12"
starbase_sandbox = "0.1.5"
starbase_styles = { version = "0.1.11", features = ["relative-path"] }
starbase_utils = { version = "0.2.13", default-features = false, features = ["editor-config", "glob", "json", "toml", "yaml"] }
tera = { version = "1.19.0", features = ["preserve_order"] }
thiserror = "1.0.40"
tokio = { version = "1.29.1", default-features = false, features = ["tracing"] }
tracing = "0.1.37"
url = "2.4.0"