rtpldatafile/Cargo.toml

34 lines
693 B
TOML

[package]
name = "rtpldatafile"
version = "0.1.0"
authors = ["JesusPerez <jpl@jesusperez.pro>"]
edition = "2021"
[dependencies]
clap = { version = "3.0.10", features = ["derive"] }
stderrlog = "0.5"
structopt = "0.3"
anyhow = "1.0.38"
faccess = "0.2.3"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8.16"
regex = "1.4.3"
toml = "0.5"
uuid = { version = "0.8", features = ["serde", "v4"] }
[dependencies.tera]
version = "1"
default-features = true
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
# Uncomment to sacrifice Drop-on-panic cleanup and std::panic::catch_unwind
# for ~24K space saving
#panic = 'abort'