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