-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.29 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
[workspace]
resolver = "2"
members = [
"crates/tj-core",
"crates/tj-mcp",
"crates/tj-cli",
]
[workspace.package]
version = "0.9.4"
edition = "2021"
rust-version = "1.88"
license = "MIT"
authors = ["Mher Shahinyan"]
repository = "https://github.com/Digital-Threads/Task-Journal"
homepage = "https://github.com/Digital-Threads/Task-Journal"
keywords = ["task-journal", "ai-coding", "mcp", "memory", "agent"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "1.0"
rmcp = { version = "0.3", features = ["server", "transport-io", "macros", "schemars"] }
chrono = { version = "0.4", features = ["serde"] }
ulid = { version = "1", features = ["serde"] }
sha2 = "0.10"
dunce = "1"
directories = "5"
rusqlite = { version = "0.31", features = ["bundled"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std", "signal"] }
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ureq = { version = "2", features = ["json"] }
ratatui = "0.29"
crossterm = "0.28"
fd-lock = "4"
regex = "1"
# Test deps
assert_fs = "1"
predicates = "3"
tempfile = "3"
mockito = "1"
criterion = "0.5"