mirror of
https://github.com/bytedream/docker4ssh.git
synced 2025-05-09 12:15:11 +02:00
26 lines
512 B
TOML
26 lines
512 B
TOML
[package]
|
|
name = "docker4ssh"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["ByteDream"]
|
|
repository = "https://github.com/ByteDream/docker4ssh"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "configure"
|
|
path = "src/configure/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
structopt = "0.3"
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = "z"
|
|
panic = "abort"
|