-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.09 KB
/
Cargo.toml
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
[package]
name = "todo"
version = "0.1.0"
edition = "2021"
[dependencies]
# main
tokio = { version = "1.38.0", features = ["full"] }
axum = { version = "0.8.1" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = { version = "1.0.120" }
tower = { version = "0.5.2" }
tower-http = { version = "0.6.2", features = ["trace"] }
sqlx = { version = "0.8.3", features = ["runtime-tokio", "sqlite", "chrono"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
chrono = { version = "0.4.38", features = ["serde"] }
anyhow = "1.0.86"
clap = { version = "4.5.8", features = ["derive"] }
log = "0.4.22"
futures = "0.3.30"
rand = "0.8.5"
dotenvy = "0.15.7"
uuid = { version = "1.9.1", features = ["v4"] }
# cmd
inquire = { version = "0.7.5", features = ["crossterm", "editor"] }
reqwest = { version = "0.12.5", features = ["json"] }
colored = "2.1.0"
color-eyre = "0.6.3"
crossterm = "0.28.1"
ratatui = "0.29.0"
[[bin]]
name = "server"
path = "src/server/main.rs"
[lib]
name = "models"
path = "src/models/lib.rs"
[[bin]]
name = "cli"
path = "src/cmd/cmd.rs"
[[bin]]
name = "rtui"
path = "src/rtui/main.rs"