Skip to main content

max / goingson

659 B · 28 lines History Blame Raw
1 [package]
2 name = "got"
3 version.workspace = true
4 edition.workspace = true
5
6 [[bin]]
7 name = "got"
8 path = "src/main.rs"
9
10 [dependencies]
11 goingson-core = { workspace = true, features = ["sqlx-sqlite"] }
12 goingson-db-sqlite = { workspace = true }
13
14 # Alloy's themed-ratatui layer, from crates.io. MIT, carved out of the
15 # otherwise GPL alloy repo so it can be linked from here.
16 alloy_tui.workspace = true
17
18 tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
19 sqlx = { workspace = true, features = ["sqlite"] }
20 uuid = { workspace = true }
21 chrono = { workspace = true }
22 ratatui = "0.30"
23 anyhow = "1"
24 makeover.workspace = true
25
26 [lints]
27 workspace = true
28