mirror of
https://github.com/edu4rdshl/rusnapshot.git
synced 2026-07-17 23:24:55 +00:00
26 lines
654 B
TOML
26 lines
654 B
TOML
[package]
|
|
name = "rusnapshot"
|
|
version = "0.1.0"
|
|
authors = ["edu4rdshl"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "2.34.0", features = ["yaml"] }
|
|
reqwest = { version = "0.11.18", features = ["default-tls"] }
|
|
openssl = { version = "0.10.54", features = ["vendored"] }
|
|
config = { version = "0.11.0", features = ["yaml", "json", "toml", "hjson", "ini"] }
|
|
failure = "0.1.8"
|
|
sqlite = "0.26.0"
|
|
md5 = "0.7.0"
|
|
chrono = "0.4.26"
|
|
prettytable-rs = "0.8.0"
|
|
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
incremental = false
|
|
opt-level = "s"
|