Files
vibe-kanban/backend/Cargo.toml

57 lines
1.6 KiB
TOML
Raw Normal View History

2025-06-14 15:14:08 -04:00
[package]
2025-06-17 20:36:25 -04:00
name = "vibe-kanban"
2025-06-14 15:14:08 -04:00
version = "0.1.0"
edition = "2021"
2025-06-17 20:36:25 -04:00
default-run = "vibe-kanban"
build = "build.rs"
2025-06-14 17:36:54 -04:00
[lib]
2025-06-17 20:36:25 -04:00
name = "vibe_kanban"
2025-06-14 17:36:54 -04:00
path = "src/lib.rs"
2025-06-14 15:14:08 -04:00
[lints.clippy]
uninlined-format-args = "allow"
2025-06-14 15:14:08 -04:00
[dependencies]
tokio = { workspace = true }
axum = { workspace = true }
tower-http = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
2025-06-20 21:32:00 +01:00
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "chrono", "uuid"] }
2025-06-14 15:34:24 -04:00
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
2025-06-14 17:36:54 -04:00
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
dirs = "5.0"
2025-06-16 17:15:51 -04:00
git2 = "0.18"
2025-06-16 18:37:19 -04:00
async-trait = "0.1"
2025-06-21 23:40:13 +01:00
libc = "0.2"
2025-06-17 11:24:03 -04:00
rust-embed = "8.2"
mime_guess = "2.0"
2025-06-17 19:59:10 -04:00
directories = "6.0.0"
2025-06-17 20:51:04 -04:00
open = "5.3.2"
ignore = "0.4"
command-group = { version = "5.0", features = ["with-tokio"] }
2025-07-01 10:47:28 +01:00
nix = { version = "0.29", features = ["signal", "process"] }
openssl-sys = { workspace = true }
rmcp = { version = "0.1.5", features = ["server", "transport-io"] }
schemars = "0.8"
regex = "1.11.1"
notify-rust = "4.11"
octocrab = "0.44"
sentry = { version = "0.41.0", features = ["anyhow", "backtrace", "panic", "debug-images"] }
sentry-tower = "0.41.0"
sentry-tracing = { version = "0.41.0", features = ["backtrace"] }
reqwest = { version = "0.11", features = ["json"] }
2025-06-14 17:36:54 -04:00
[build-dependencies]
dotenv = "0.15"
2025-06-14 17:36:54 -04:00
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
[profile.release]
debug = true
split-debuginfo = "packed"
strip = true