-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (49 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
59 lines (49 loc) · 1.05 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
[workspace]
resolver = "2"
members = [
"crates/belt-core",
"crates/belt-infra",
"crates/belt-daemon",
"crates/belt-cli",
]
[workspace.package]
version = "0.1.7"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/kys0213/belt"
[workspace.dependencies]
# Core
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# Testing
tempfile = "3"
thiserror = "2"
anyhow = "1"
# Async
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
# CLI
clap = { version = "4", features = ["derive"] }
# Database
rusqlite = { version = "0.32", features = ["bundled"] }
# TUI
ratatui = "0.29"
crossterm = "0.28"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Platform
libc = "0.2"
# Regex
regex = "1"
# Compression
flate2 = "1"
# Time
chrono = { version = "0.4", features = ["serde"] }
# Cache
lru = "0.12"
# Internal crates
belt-core = { path = "crates/belt-core" }
belt-infra = { path = "crates/belt-infra" }
belt-daemon = { path = "crates/belt-daemon" }