alex/Cargo.toml

20 lines
402 B
TOML
Raw Normal View History

2021-09-13 12:18:18 +02:00
[package]
name = "alex"
2021-09-13 12:18:18 +02:00
version = "0.1.0"
edition = "2021"
2021-09-13 12:18:18 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Used for creating tarballs for backups
tar = "0.4.38"
2021-09-13 12:18:18 +02:00
# Used to compress said tarballs using gzip
flate2 = "1.0.26"
2021-09-13 12:56:41 +02:00
# Used for backup filenames
chrono = "0.4.26"
2021-09-13 12:56:41 +02:00
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"