Files
crank/Cargo.toml
T
2026-03-25 21:23:57 +03:00

45 lines
1.3 KiB
TOML

[workspace]
members = [
"apps/admin-api",
"apps/mcp-server",
"crates/mcpaas-core",
"crates/mcpaas-schema",
"crates/mcpaas-mapping",
"crates/mcpaas-proto",
"crates/mcpaas-registry",
"crates/mcpaas-runtime",
"crates/mcpaas-adapter-rest",
"crates/mcpaas-adapter-graphql",
"crates/mcpaas-adapter-grpc",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT"
rust-version = "1.85"
version = "0.1.0"
[workspace.dependencies]
axum = "0.8"
base64 = "0.22"
prost = "0.14"
prost-reflect = { version = "0.16", features = ["serde"] }
prost-types = "0.14"
protoc-bin-vendored = "3"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio-rustls", "postgres"] }
thiserror = "2"
time = { version = "0.3", features = ["formatting", "parsing"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tonic = { version = "0.14", features = ["transport"] }
tonic-prost = "0.14"
tonic-build = "0.14"
tonic-prost-build = "0.14"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1", features = ["serde", "v7"] }