2025-06-14 15:14:08 -04:00
|
|
|
[package]
|
2025-06-17 20:36:25 -04:00
|
|
|
name = "vibe-kanban"
|
2025-07-08 18:00:53 +00:00
|
|
|
version = "0.0.41"
|
2025-06-14 15:14:08 -04:00
|
|
|
edition = "2021"
|
2025-06-17 20:36:25 -04:00
|
|
|
default-run = "vibe-kanban"
|
2025-06-27 18:14:25 +01:00
|
|
|
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
|
|
|
|
2025-06-27 13:32:32 +01: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"] }
|
2025-06-16 16:16:42 -04:00
|
|
|
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"
|
2025-06-19 11:58:30 -04:00
|
|
|
ignore = "0.4"
|
2025-06-27 16:18:35 +01:00
|
|
|
command-group = { version = "5.0", features = ["with-tokio"] }
|
2025-07-01 10:47:28 +01:00
|
|
|
nix = { version = "0.29", features = ["signal", "process"] }
|
2025-06-20 16:10:07 +01:00
|
|
|
openssl-sys = { workspace = true }
|
2025-06-27 18:14:25 +01:00
|
|
|
rmcp = { version = "0.1.5", features = ["server", "transport-io"] }
|
|
|
|
|
schemars = "0.8"
|
2025-07-01 15:11:51 +01:00
|
|
|
regex = "1.11.1"
|
2025-07-01 15:34:21 +01:00
|
|
|
notify-rust = "4.11"
|
2025-07-01 16:28:15 +01:00
|
|
|
octocrab = "0.44"
|
2025-07-04 11:11:45 +02:00
|
|
|
sentry = { version = "0.41.0", features = ["anyhow", "backtrace", "panic", "debug-images"] }
|
|
|
|
|
sentry-tower = "0.41.0"
|
|
|
|
|
sentry-tracing = { version = "0.41.0", features = ["backtrace"] }
|
2025-07-04 16:24:19 +01:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2025-07-08 11:29:54 +01:00
|
|
|
strip-ansi-escapes = "0.2.1"
|
2025-07-08 19:32:23 +02:00
|
|
|
urlencoding = "2.1.3"
|
2025-06-14 17:36:54 -04:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
2025-07-04 16:24:19 +01:00
|
|
|
dotenv = "0.15"
|
2025-06-14 17:36:54 -04:00
|
|
|
ts-rs = { version = "9.0", features = ["uuid-impl", "chrono-impl"] }
|
2025-07-04 11:11:45 +02:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
debug = true
|
|
|
|
|
split-debuginfo = "packed"
|
2025-07-04 18:27:33 +02:00
|
|
|
strip = true
|