forked from moonrepo/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
110 lines (105 loc) · 2.65 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
[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", "wasm/test-plugin"]
default-members = ["crates/cli"]
[workspace.dependencies]
async-trait = "0.1.79"
cached = "0.49.2"
chrono = { version = "0.4.35", features = ["serde"] }
cd_env = "0.1.3"
ci_env = "0.2.2"
clap = { version = "4.5.3", default-features = false, features = [
"std",
"error-context",
] }
clap_complete = "4.5.1"
console = "0.15.8"
dirs = "5.0.1"
miette = "7.2.0"
once_cell = "1.19.0"
once_map = "0.4.15"
pathdiff = "0.2.1"
petgraph = { version = "0.6.4", default-features = false, features = [
"serde-1",
] }
relative-path = { version = "1.9.2" }
regex = { version = "1.10.4", default-features = false, features = [
"std",
"perf",
] }
reqwest = { version = "0.11.24", 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.14.5", default-features = false, features = [
"schema",
] }
semver = "1.0.22"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_yaml = "0.9.33"
starbase = "=0.5.1"
starbase_archive = { version = "=0.6.0", default-features = false, features = [
"miette",
"tar-gz",
] }
starbase_events = "=0.5.1"
starbase_sandbox = "=0.5.0"
starbase_styles = { version = "=0.3.1", features = ["relative-path"] }
starbase_utils = { version = "=0.6.2", default-features = false, features = [
"editor-config",
"glob",
"json",
"miette",
"net",
"toml",
"yaml",
] }
tera = { version = "1.19.1", features = ["preserve_order"] }
thiserror = "1.0.58"
tokio = { version = "1.36.0", 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.8.0", features = ["v4"] }
# proto/plugin related
extism = "1.2.0"
extism-pdk = "1.1.0"
proto_core = "0.32.5"
proto_installer = "0.3.1"
system_env = "0.2.4"
version_spec = "0.2.1"
warpgate = "0.11.7"
warpgate_api = "0.4.5"
warpgate_pdk = "0.2.4"
# 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" }