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