24 lines
607 B
TOML
24 lines
607 B
TOML
[package]
|
|
name = "vitrifyr"
|
|
version = "0.1.0"
|
|
authors = ["Samuel FORESTIER <samuel+dev@forestier.app>"]
|
|
description = "A Rust system tool that allows file (de)vitrification"
|
|
edition = "2021"
|
|
homepage = "https://git.forestier.app/HorlogeSkynet/vitrifyr"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
aes-stream = "^0.2"
|
|
base64 = "^0.22"
|
|
clap = { version = "^4.5", features = ["derive"] }
|
|
ctrlc = { version = "^3.4", features = ["termination"] }
|
|
env_logger = "^0.9"
|
|
liblzma = { version = "^0.3", features = ["parallel", "static"] }
|
|
log = "^0.4"
|
|
rand = "^0.8"
|
|
rust-crypto = "^0.2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|