forked from moonrepo/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
88 lines (85 loc) · 2.04 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
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/core/*",
# Languages
"crates/bun/*",
"crates/deno/*",
"crates/javascript/*",
"crates/node/*",
"crates/rust/*",
"crates/system/*",
"crates/typescript/*",
# Next-gen
"nextgen/*",
]
exclude = ["tests/fixtures"]
default-members = ["crates/cli"]
[workspace.dependencies]
async-trait = "0.1.75"
cached = "0.46.1"
chrono = { version = "0.4.31", features = ["serde"] }
cd_env = "0.1.2"
ci_env = "0.2.1"
clap = { version = "4.4.12", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.4.5"
console = "0.15.7"
miette = "5.10.0"
once_cell = "1.19.0"
once_map = "0.4.13"
pathdiff = "0.2.1"
petgraph = { version = "0.6.4", default-features = false, features = [
"serde-1",
] }
proto_core = "0.26.11"
proto_installer = "0.1.0"
relative-path = { version = "1.9.2", features = ["serde"] }
regex = "1.10.2"
reqwest = { version = "0.11.23", default-features = false, features = [
"rustls-tls-native-roots",
# We don't use openssl but its required for musl builds
"native-tls-vendored",
] }
rustc-hash = "1.1.0"
schematic = { version = "0.12.12", default-features = false, features = [
"config",
"schema",
"url",
"yaml",
"type_semver",
] }
semver = "1.0.20"
serde = { version = "1.0.193", features = ["derive", "rc"] }
serde_json = "1.0.108"
serde_yaml = "0.9.29"
starbase = "0.2.12"
starbase_archive = { version = "0.2.5", default-features = false, features = [
"tar-gz",
] }
starbase_events = { version = "0.2.2" }
starbase_sandbox = "0.1.12"
starbase_styles = { version = "0.1.16", features = ["relative-path"] }
starbase_utils = { version = "0.3.11", default-features = false, features = [
"editor-config",
"glob",
"json",
"toml",
"yaml",
] }
system_env = "0.1.9"
tera = { version = "1.19.1", features = ["preserve_order"] }
thiserror = "1.0.52"
tokio = { version = "1.35.1", default-features = false, features = [
"macros",
"process",
"rt-multi-thread",
"rt",
"signal",
"time",
"tracing",
] }
tokio-util = "0.7.10"
tracing = "0.1.40"
url = "2.5.0"
uuid = { version = "1.6.1", features = ["v4"] }