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 = "0.3.11" |
12 | categories = ["algorithms" , "cryptography" ] |
13 | edition = "2018" |
14 | |
15 | [badges] |
16 | travis-ci = { repository = "jedisct1/rust-siphash" } |
17 | |
18 | [profile.release] |
19 | lto = true |
20 | panic = "abort" |
21 | opt-level = 3 |
22 | |
23 | [dependencies] |
24 | serde = { version = "1.0" , features = ["derive" ], optional = true } |
25 | serde_json = { version = "1.0" , optional = true } |
26 | |
27 | [features] |
28 | default = ["std" ] |
29 | serde_std = ["std" , "serde/std" ] |
30 | serde_no_std = ["serde/alloc" ] |
31 | std = [] |
32 | |