forked from moonrepo/proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (58 loc) · 1.51 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
[workspace]
resolver = "2"
members = ["crates/*"]
default-members = ["crates/cli"]
[workspace.dependencies]
anyhow = "1.0.91"
async-trait = "0.1.83"
clap = "4.5.20"
clap_complete = "4.5.36"
dirs = "5.0.1"
extism = ">=1.6.0" # Lower for consumers
extism-pdk = "1.3.0"
human-sort = "0.2.2"
indexmap = "2.6.0"
miette = "7.2.0"
once_cell = "1.20.2"
regex = { version = "1.11.1", default-features = false, features = ["std"] }
reqwest = { version = "0.12.9", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
] }
rustc-hash = "2.0.0"
scc = "2.2.4"
schematic = { version = "0.17.5", default-features = false }
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
sha2 = "0.10.8"
shell-words = "1.1.0"
starbase = { version = "0.9.4" }
starbase_archive = { version = "0.8.9", features = [
"gz",
"miette",
"tar-bz2",
"tar-gz",
"tar-xz",
"tar-zstd",
"zip",
"zip-deflate",
] }
starbase_events = { version = "0.6.3" }
starbase_sandbox = { version = "0.7.6" }
starbase_shell = { version = "0.5.10", features = ["miette"] }
starbase_styles = { version = "0.4.5" }
starbase_utils = { version = "0.8.12", default-features = false, features = [
"json",
"miette",
"net",
"toml",
] }
thiserror = "1.0.65"
tokio = { version = "1.41.0", features = ["full", "tracing"] }
tracing = "0.1.40"
uuid = { version = "1.11.0", features = ["v4"] }
[profile.dist]
inherits = "release"
lto = "thin"