1 | [package] |
2 | authors = ["Frank Denis <github@pureftpd.org>" ] |
3 | keywords = ["crypto" ,"hash" ,"siphash" ] |
4 | license = "MIT/Apache-2.0" |
5 | name = "siphasher" |
6 | description = "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust" |
7 | repository = "https://github.com/jedisct1/rust-siphash" |
8 | homepage = "https://docs.rs/siphasher" |
9 | documentation = "https://docs.rs/siphasher" |
10 | readme = "README.md" |
11 | version = "1.0.1" |
12 | categories = ["algorithms" , "cryptography" ] |
13 | edition = "2018" |
14 | |
15 | [profile.release] |
16 | lto = true |
17 | panic = "abort" |
18 | opt-level = 3 |
19 | |
20 | [dependencies] |
21 | serde = { version = "1.0" , features = ["derive" ], optional = true } |
22 | serde_json = { version = "1.0" , optional = true } |
23 | |
24 | [features] |
25 | default = ["std" ] |
26 | serde_std = ["std" , "serde/std" ] |
27 | serde_no_std = ["serde/alloc" ] |
28 | std = [] |
29 | |