* upload images to tasks * dislpay image path as markdown; remove redundant code; add cleanup * support svg * remove unused * copy images into worktree directories * shared * address review * fmt
22 lines
828 B
TOML
22 lines
828 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["crates/server", "crates/db", "crates/executors", "crates/services", "crates/utils", "crates/local-deployment", "crates/deployment"]
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
axum = { version = "0.8.4", features = ["macros", "multipart"] }
|
|
tower-http = { version = "0.5", features = ["cors"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
thiserror = "2.0.12"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
openssl-sys = { version = "0.9", features = ["vendored"] }
|
|
ts-rs = { git = "https://github.com/xazukx/ts-rs.git", branch = "use-ts-enum", features = ["uuid-impl", "chrono-impl", "no-serde-warnings"] }
|
|
|
|
[profile.release]
|
|
debug = true
|
|
split-debuginfo = "packed"
|
|
strip = true
|