-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 923 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 923 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
28
29
30
31
32
[package]
name = "bitpill"
version = "0.3.5"
edition = "2024"
description = "A personal medication management TUI application built in Rust."
license = "MIT"
readme = "README.md"
repository = "https://github.com/gbrennon/BitPill"
homepage = "https://github.com/gbrennon/BitPill"
keywords = ["medication", "health", "tui", "ratatui", "cli"]
categories = ["accessibility", "command-line-utilities", "filesystem"]
[features]
default = ["test-helpers"]
test-helpers = []
rest-api = ["dep:actix-web", "dep:tokio"]
serde = []
[dependencies]
thiserror = "2"
uuid = { version = "1", features = ["v7", "std", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
ratatui = "0.29"
crossterm = "0.28"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "6"
actix-web = { version = "4", optional = true }
tokio = { version = "1", features = ["full"], optional = true }
[dev-dependencies]
tempfile = "3"