-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (57 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
59 lines (57 loc) · 1.58 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
[workspace]
members = [
"cli", "runtime",
]
resolver = "3"
[workspace.package]
edition = "2024"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
uuid = { version = "1", features = ["v4", "v5", "v7", "serde"] }
eyre = { version = "0.6.12" }
wasmtime = { version = "40.0.0", features = ["runtime", "component-model", "component-model-async", "cache"] }
wasmtime-wasi = { version = "40.0.0" }
wasmtime-wasi-http = { version = "40.0.0" }
wiggle = { version = "40.0.0" }
wit-parser = "0.244.0"
wit-component = "0.244.0"
wit-bindgen = "0.39.0"
warg-protocol = "0.9.2"
wasm-pkg-core = "0.15.0"
wasm-pkg-client = "0.15.0"
wasm-pkg-common = "0.15.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = "0.22.1"
log = "0.4"
dotenv = "0.15.0"
futures = "0.3.28"
# This should match the version used by wit-parser for compatibility.
semver = "1.0.23"
secrecy = "0.8.0"
indexmap = "2.7.1"
tempfile = "3.10.1"
sha2 = "0.10.8"
thiserror = "1"
bytes = { version = "1.4", default-features = false }
async-trait = "0.1.88"
petgraph = "0.8.2"
strum = "0.27.2"
strum_macros = "0.27.2"
derive-getters = "0.5.0"
once_cell = "1.21.3"
hex = "0.4.3"
toml = "0.8"
tracing-subscriber = "0.3.22"
axum = "0.8"
tower-http = { version = "0.6", features = ["cors"] }
hyper = { version = "1", features = ["full"] }
http = "1"
tokio-util = "0.7"
http-body = "1"
http-body-util = "0.1"
anyhow = "1"
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-native-roots"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
cron = "0.15.0"
chrono = "0.4"