28 lines
772 B
TOML
28 lines
772 B
TOML
[package]
|
|
name = "wara"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license-file = "./LICENSE"
|
|
authors = [
|
|
"Gvidas Juknevičius <gvidas.juknevicius@mcorangehq.xyz>"
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.103"
|
|
camino = { version = "1.2.4", features = ["serde1"] }
|
|
chrono = "0.4.45"
|
|
clap = { version = "4.6.1", features = ["derive"] }
|
|
diesel = { version = "2.3.12", features = ["chrono", "postgres"] }
|
|
diesel_migrations = "2.3.2"
|
|
env_logger = "0.11.11"
|
|
futures = "0.3.34"
|
|
lazy_static = "1.5.0"
|
|
log = "0.4.33"
|
|
mikrotik-rs = { version = "0.8.0", features = ["tokio-tls"] }
|
|
regex = "1.12.4"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.150"
|
|
tabled = { version = "0.21.0", features = ["ansi"] }
|
|
tokio = { version = "1.52.3", features = ["full"] }
|
|
toml = "1.1.2"
|