[package]
edition = "2024"
name = "bitpill"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A personal medication management TUI application built in Rust."
homepage = "https://github.com/gbrennon/BitPill"
readme = "README.md"
keywords = [
"medication",
"health",
"tui",
"ratatui",
"cli",
]
categories = [
"accessibility",
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/gbrennon/BitPill"
[features]
default = ["test-helpers"]
rest-api = [
"dep:actix-web",
"dep:tokio",
]
test-helpers = []
[lib]
name = "bitpill"
path = "src/lib.rs"
[[bin]]
name = "bitpill"
path = "src/main.rs"
[[test]]
name = "console_notification_adapter"
path = "tests/console_notification_adapter.rs"
[[test]]
name = "container"
path = "tests/container.rs"
[[test]]
name = "infrastructure"
path = "tests/infrastructure.rs"
[[test]]
name = "infrastructure_clock"
path = "tests/infrastructure_clock.rs"
[[test]]
name = "presentation"
path = "tests/presentation.rs"
[dependencies.actix-web]
version = "4"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "6"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
optional = true
[dependencies.uuid]
version = "1"
features = [
"v7",
"std",
"serde",
]
[dev-dependencies.tempfile]
version = "3"