2026-01-13 07:57:47 -05:00
|
|
|
[package]
|
|
|
|
|
name = "oott"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-01-14 09:53:01 -05:00
|
|
|
env_logger = "0.11.8"
|
|
|
|
|
log = "0.4.29"
|
2026-01-13 11:01:53 -05:00
|
|
|
pnet = "0.35.0"
|
2026-01-13 15:48:17 -05:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2026-01-19 12:45:52 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
2026-01-21 10:30:37 -05:00
|
|
|
rusqlite = { version = "0.38.0", features = ["bundled", "chrono"] }
|
2026-01-19 19:03:08 -05:00
|
|
|
rusqlite_migration = { version = "2.4.0", features = ["from-directory"] }
|
|
|
|
|
include_dir = "0.7.4"
|
2026-01-21 10:30:37 -05:00
|
|
|
chrono = "0.4.43"
|
2026-01-21 15:36:27 -05:00
|
|
|
pushover = "0.4.0"
|
|
|
|
|
config = "0.15.19"
|
|
|
|
|
lazy_static = "1.5.0"
|
2026-01-23 14:35:28 -05:00
|
|
|
duration-string = { version="0.5.3", features = ["serde"] }
|
2026-01-27 09:21:00 -05:00
|
|
|
clap = {version="4.5.54", features=["derive"]}
|