-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (96 loc) · 2.43 KB
/
Copy pathCargo.toml
File metadata and controls
104 lines (96 loc) · 2.43 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
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
[package]
name = "wassette-mcp-server"
version = "0.4.0"
edition = "2021"
license.workspace = true
[workspace]
members = ["crates/*"]
[workspace.package]
license = "MIT"
license-file = "LICENSE"
[workspace.dependencies]
anyhow = "1.0"
component2json = { path = "crates/component2json" }
etcetera = "0.11"
futures = "0.3"
wassette = { path = "crates/wassette" }
mcp-sdk = "0.0.3"
mcp-server = { path = "crates/mcp-server" }
oci-client = "0.16"
oci-wasm = "0.4"
policy = { path = "crates/policy" }
reqwest = { version = "0.13", features = ["stream"] }
rmcp = "0.9.1"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
tempfile = "3.25"
test-log = "0.2"
thiserror = "2.0.17"
tokio = "1.49"
tokio-stream = "0.1"
tokio-test = "0.4"
tokio-util = "0.7.18"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-test = "0.2"
wasmtime = "36.0.5"
wasmtime-wasi = "36.0.5"
wasmtime-wasi-http = "36.0.5"
wasmtime-wasi-config = "36.0.5"
[dependencies]
anyhow = { workspace = true }
axum = "0.8"
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
etcetera = { workspace = true }
figment = { version = "0.10", features = ["env", "toml"] }
wassette = { workspace = true }
mcp-server = { workspace = true }
oci-client = { workspace = true }
policy = { workspace = true }
reqwest = { workspace = true }
rmcp = { workspace = true, features = [
"server",
"transport-sse-server",
"transport-streamable-http-server",
"transport-io",
"macros",
] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
[[bin]]
name = "wassette"
path = "src/main.rs"
[build-dependencies]
built = { version = "0.8", features = ["git2"] }
[dev-dependencies]
proptest = "1.4"
temp-env = "0.3"
reqwest = { workspace = true, features = ["json"] }
serde_json = { workspace = true }
tempfile = "3.8"
test-log = { version = "0.2", features = ["trace"] }
tokio-test = "0.4"
tracing-test = "0.2"
testcontainers = "0.27"
oci-wasm = "0.4"
oci-client = "0.16"
hyper = { version = "1.0", features = ["server", "http1"] }
http-body-util = "0.1"
hyper-util = "0.1"
futures-util = "0.3.30"
rand = "0.9"
bytes = "1"
tokio-rustls = "0.26"
rustls = { version = "0.23", features = ["aws-lc-rs"] }
rcgen = "0.14"
hex = "0.4"
sha2 = "0.10"
[profile.release]
codegen-units = 1
lto = true