42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[workspace]
|
|
members = [
|
|
"apps/admin-api",
|
|
"apps/mcp-server",
|
|
"crates/crank-community-auth",
|
|
"crates/crank-community-mcp",
|
|
"crates/crank-core",
|
|
"crates/crank-schema",
|
|
"crates/crank-mapping",
|
|
"crates/crank-registry",
|
|
"crates/crank-runtime",
|
|
"crates/crank-adapter-rest",
|
|
]
|
|
resolver = "3"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
license = "MIT"
|
|
rust-version = "1.85"
|
|
version = "0.3.1"
|
|
|
|
[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"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", default-features = false, features = ["cookies", "json", "rustls-tls"] }
|
|
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"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
uuid = { version = "1", features = ["serde", "v7"] }
|