1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "siphasher" 15version = "1.0.1" 16authors = ["Frank Denis <[email protected]>"] 17description = "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust" 18homepage = "https://docs.rs/siphasher" 19documentation = "https://docs.rs/siphasher" 20readme = "README.md" 21keywords = [ 22 "crypto", 23 "hash", 24 "siphash", 25] 26categories = [ 27 "algorithms", 28 "cryptography", 29] 30license = "MIT/Apache-2.0" 31repository = "https://github.com/jedisct1/rust-siphash" 32 33[profile.release] 34opt-level = 3 35lto = true 36panic = "abort" 37 38[dependencies.serde] 39version = "1.0" 40features = ["derive"] 41optional = true 42 43[dependencies.serde_json] 44version = "1.0" 45optional = true 46 47[features] 48default = ["std"] 49serde_no_std = ["serde/alloc"] 50serde_std = [ 51 "std", 52 "serde/std", 53] 54std = [] 55