summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 91569fd..3f68df4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,13 @@
1[package] 1[package]
2name = "rust-hexdump" 2name = "rust-hexdump"
3version = "0.1.0" 3version = "1.0.0"
4edition = "2021" 4edition = "2021"
5 5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7 7
8[dependencies] 8[dependencies]
9clap = { version = "4.4.18", features = ["env", "derive"] } 9clap = { version = "4.4.18", features = ["env", "derive"] }
10
11[profile.release]
12strip = true
13opt-level = "z"