n58-kantine/Cargo.toml

28 lines
718 B
TOML
Raw Normal View History

2023-01-24 06:35:55 +01:00
[package]
name = "n58-kantine"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-01-25 08:37:35 +01:00
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
2023-01-24 06:35:55 +01:00
[dependencies]
anyhow = "1.0.68"
2023-01-25 08:37:35 +01:00
chrono = { version = "0.4.23", features = ["serde"] }
2023-01-24 06:35:55 +01:00
clap = { version = "4.1.2", features = ["derive"] }
dirs = "4.0.0"
html-escape = "0.2.13"
2023-01-25 08:37:35 +01:00
lazy_static = "1.4.0"
2023-01-24 06:35:55 +01:00
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
strum = { version = "0.24.1", features = ["derive"] }
tl = { version = "0.7.7", features = ["simd"] }
ureq = "2.6.2"