55 lines
1.6 KiB
TOML
55 lines
1.6 KiB
TOML
[workspace]
|
|
members = [
|
|
"apps/admin-api",
|
|
"apps/mcp-server",
|
|
"crates/crank-core",
|
|
"crates/crank-schema",
|
|
"crates/crank-mapping",
|
|
"crates/crank-proto",
|
|
"crates/crank-registry",
|
|
"crates/crank-runtime",
|
|
"crates/crank-adapter-rest",
|
|
"crates/crank-adapter-graphql",
|
|
"crates/crank-adapter-grpc",
|
|
"crates/crank-adapter-websocket",
|
|
"crates/crank-adapter-soap",
|
|
]
|
|
resolver = "3"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
license = "MIT"
|
|
rust-version = "1.85"
|
|
version = "0.1.0"
|
|
|
|
[workspace.dependencies]
|
|
aes-gcm = "0.10"
|
|
argon2 = "0.5"
|
|
axum = "0.8"
|
|
axum-extra = { version = "0.10", features = ["cookie"] }
|
|
base64 = "0.22"
|
|
hkdf = "0.12"
|
|
prost = "0.14"
|
|
prost-reflect = { version = "0.16", features = ["serde"] }
|
|
prost-types = "0.14"
|
|
protoc-bin-vendored = "3"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", default-features = false, features = ["cookies", "json", "rustls-tls"] }
|
|
roxmltree = "0.20"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
sha2 = "0.10"
|
|
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio-rustls", "postgres", "macros", "json", "time"] }
|
|
thiserror = "2"
|
|
time = { version = "0.3", features = ["formatting", "parsing", "serde"] }
|
|
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"] }
|
|
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-webpki-roots"] }
|
|
uuid = { version = "1", features = ["serde", "v7"] }
|