-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 690 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (25 loc) · 690 Bytes
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
[workspace]
members = [
"crates/tree-ring-memory-core",
"crates/tree-ring-memory-sqlite",
"crates/tree-ring-memory-cli",
]
resolver = "2"
[workspace.package]
version = "0.11.0"
edition = "2021"
license = "MIT"
authors = ["TerminallyLazy"]
repository = "https://github.com/TerminallyLazy/Tree-Ring-Memory"
[workspace.dependencies]
chrono = { version = "0.4", features = ["serde", "clock"] }
clap = { version = "4", features = ["derive"] }
once_cell = "1"
regex = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3"
thiserror = "1"
uuid = { version = "1", features = ["v4"] }
ratatui = "0.30.2"