forked from kanban-rs/kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (60 loc) · 1.53 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (60 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[workspace]
resolver = "2"
members = [
"crates/kanban-core",
"crates/kanban-domain",
"crates/kanban-persistence",
"crates/kanban-persistence-json",
"crates/kanban-persistence-sqlite",
"crates/kanban-service",
"crates/kanban-tui",
"crates/kanban-cli",
"crates/kanban-mcp",
]
[workspace.package]
version = "0.6.0"
edition = "2021"
rust-version = "1.74"
authors = ["Max Emil Yoon Blomstervall"]
license = "Apache-2.0"
repository = "https://github.com/fulsomenko/kanban"
homepage = "https://github.com/fulsomenko/kanban"
description = "A terminal-based project management solution"
[workspace.dependencies]
# Core async runtime
tokio = { version = "1.42", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
futures-util = "0.3"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# UUID and time
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# TUI framework
ratatui = "0.29"
crossterm = "0.28"
# CLI framework
clap = { version = "4.5", features = ["derive", "env", "string"] }
clap_complete = "4.5"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Testing
mockall = "0.13"
assert_cmd = "2.0"
predicates = "3.0"
# File watching and atomic operations
notify = "6.1"
tempfile = "3.8"
# Windows path normalisation (strip `\\?\` UNC prefix)
dunce = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true