36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/server",
|
|
"crates/db",
|
|
"crates/executors",
|
|
"crates/services",
|
|
"crates/utils",
|
|
"crates/local-deployment",
|
|
"crates/deployment",
|
|
"crates/remote",
|
|
"crates/review"
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
axum = { version = "0.8.4", features = ["macros", "multipart", "ws"] }
|
|
tower-http = { version = "0.5", features = ["cors", "request-id", "trace", "fs"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
anyhow = "1.0"
|
|
git2 = { version = "0.20.3", default-features = false }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls-webpki-roots-no-provider"] }
|
|
rustls = { version = "0.23", default-features = false, features = ["aws_lc_rs", "std", "tls12"] }
|
|
thiserror = "2.0.12"
|
|
tracing = "0.1.43"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
|
|
ts-rs = { git = "https://github.com/xazukx/ts-rs.git", branch = "use-ts-enum", features = ["uuid-impl", "chrono-impl", "no-serde-warnings", "serde-json-impl"] }
|
|
schemars = { version = "1.0.4", features = ["derive", "chrono04", "uuid1", "preserve_order"] }
|
|
async-trait = "0.1"
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
split-debuginfo = "packed"
|
|
strip = true
|