[package]
edition = "2018"
name = "probabilistic-collections"
version = "0.7.0"
authors = ["Jeffrey Xiao <jeffrey.xiao1998@gmail.com>"]
include = ["src/**/*", "Cargo.toml"]
description = "Various implementations of collections that use approximations to improve on running time or memory,\nbut introduce a certain amount of error.\n"
documentation = "https://docs.rs/probabilistic-collections"
readme = "README.md"
keywords = ["collections", "data-structures", "probabilistic"]
categories = ["algorithms", "data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/jeffrey-xiao/probabilistic-collections-rs"
[dependencies.bincode]
version = "1.0"
[dependencies.byteorder]
version = "1"
[dependencies.rand]
version = "0.7.0"
[dependencies.rand_xorshift]
version = "0.2.0"
[dependencies.serde_crate]
version = "1.0.103"
features = ["std", "derive"]
optional = true
default-features = false
package = "serde"
[dependencies.siphasher]
version = "0.3.2"
[features]
serde = ["siphasher/serde", "serde_crate"]
[badges.gitlab]
branch = "master"
repository = "jeffrey-xiao/probabilistic-collections-rs"