diff options
| author | Evsyukov Denis <[email protected]> | 2020-03-11 08:38:15 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-03-11 08:38:15 +0300 |
| commit | f90cd9a3ce6272e63edcaff4e423f7fd5401f50b (patch) | |
| tree | 33bfef32cfd03de5ea5e11e3cf125c9f9d16205d /Cargo.toml | |
| parent | [+] added important note (diff) | |
| parent | [+] publish on tag (diff) | |
| download | t-f90cd9a3ce6272e63edcaff4e423f7fd5401f50b.tar.xz t-f90cd9a3ce6272e63edcaff4e423f7fd5401f50b.zip | |
Merge pull request #1 from juev/rust
Rust
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 |