diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f402062 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "t" +version = "2.0.0" +authors = ["Denis Evsyukov <[email protected]>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +getopts = "0.2" +rust-crypto = "0.2" + +[profile.release] +opt-level = 'z' # Optimize for size. +lto = true +codegen-units = 1 +panic = 'abort'
\ No newline at end of file |