-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (76 loc) · 2.29 KB
/
Cargo.toml
File metadata and controls
77 lines (76 loc) · 2.29 KB
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
[workspace]
resolver = "3"
members = ["crates/*"]
default-members = ["crates/cli"]
[workspace.dependencies]
anyhow = "1.0.102"
async-trait = "0.1.89"
clap = "4.6.1"
clap_complete = "4.6.1"
compact_str = { version = "0.9.0", default-features = false, features = [
"serde",
] }
derive_setters = "0.1.9"
dirs = "6.0.0"
extism = ">=1.6.0" # Lower for consumers
extism-pdk = "1.4.1"
futures = "0.3.31"
http-cache-reqwest = "1.0.0-alpha.5"
human-sort = "0.2.2"
indexmap = "2.13.1"
iocraft = "0.8.0"
# iocraft = { git = "https://github.com/ccbrown/iocraft.git", branch = "main" }
miette = "7.6.0"
oci-client = "0.16.1"
once_cell = "1.21.4"
docker_credential = { version = "1.3.2" }
regex = { version = "1.12.3", default-features = false, features = ["std"] }
reqwest = { version = "0.13.2", default-features = false, features = [
"charset",
"http2",
# We don't use openssl but its required for musl builds
"native-tls-vendored",
] }
reqwest-middleware = { version = "0.5.1", default-features = false, features = [
"charset",
"http2",
] }
rmcp = { version = "1.3.0", default-features = false, features = [
"base64",
"macros",
] }
rustc-hash = "2.1.2"
scc = "3.7.0"
schemars = "1.2.1"
schematic = { version = "0.19.7", default-features = false }
semver = { version = "1.0.28", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.49", features = ["preserve_order"] }
sha2 = "0.10.9"
shell-words = "1.1.1"
starbase = { version = "0.10.10" }
starbase_archive = { version = "0.13.0", features = [
"gz",
"miette",
"tar-all",
"zip-all",
] }
starbase_args = { version = "0.1.10" }
starbase_console = { version = "0.6.25", features = ["miette", "ui"] }
starbase_id = { version = "0.3.2", features = ["miette", "schematic"] }
starbase_sandbox = { version = "0.11.0" }
starbase_shell = { version = "0.12.3", features = ["miette"] }
starbase_styles = { version = "0.6.7" }
starbase_utils = { version = "0.13.1", default-features = false, features = [
"json",
"miette",
"net",
"toml",
] }
thiserror = "2.0.18"
tokio = { version = "1.52.1", features = ["full", "tracing"] }
toml_edit = "0.25"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", default-features = false }
url = "2.5.8"
uuid = { version = "1.23.1", features = ["v4"] }