# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "fastset" version = "0.4.1" authors = ["Ayan Das"] description = "Fast set implementation for dense, bounded integer collections, optimized for quick updates and access." homepage = "https://github.com/b-vitamins/fastset" documentation = "https://docs.rs/fastset" readme = "README.md" keywords = [ "set", "bounded", "integer", "performance", "delphic", ] categories = ["data-structures"] license = "MIT" repository = "https://github.com/b-vitamins/fastset" [profile.release] opt-level = 3 lto = "fat" codegen-units = 1 [[bin]] name = "memory_set" path = "bin/memory_usage_set.rs" [[bin]] name = "memory_hashset" path = "bin/memory_usage_hashset.rs" [[bench]] name = "set" path = "bench/set.rs" harness = false [dependencies.nanorand] version = "0.7.0" [dependencies.serde] version = "1.0.197" features = ["derive"] [dev-dependencies.criterion] version = "0.4.0" [dev-dependencies.hashbrown] version = "0.14.3" [dev-dependencies.statrs] version = "0.16.0"