32 lines
869 B
TOML
32 lines
869 B
TOML
[package]
|
|
name = "crank-community-mcp"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
axum.workspace = true
|
|
base64.workspace = true
|
|
crank-adapter-rest = { path = "../crank-adapter-rest" }
|
|
crank-core = { path = "../crank-core" }
|
|
crank-registry = { path = "../crank-registry" }
|
|
crank-runtime = { path = "../crank-runtime" }
|
|
crank-schema = { path = "../crank-schema" }
|
|
futures-util = "0.3"
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
sqlx.workspace = true
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
tracing.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
crank-mapping = { path = "../crank-mapping" }
|
|
crank-test-support = { path = "../crank-test-support" }
|