[package] name = "smallbitset" version = "0.7.1" authors = ["Xavier Gillard "] edition = "2018" description = "This crate provides a series of allocation free sets capable of holding small integer values." repository = "https://github.com/xgillard/smallbitset" readme = "README.md" license = "MIT" keywords = ["bitset", "small-values", "allocation-free"] categories = ["data-structures", "mathematics"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] alloc = [] default = ["alloc"] [dependencies] num-traits = { version = "0.2", default-features = false } [dev-dependencies] paste = "1.0"