# 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 = "fast-list" version = "0.1.8" description = "A doubly linked list using SlotMap for improved cache locality, and to solve the ABA problem." homepage = "https://github.com/henke443/fast-list" documentation = "https://docs.rs/fast-list" readme = "README.md" keywords = [ "graph", "slotmap", "data-structure", "linked-list", "list", ] categories = [ "data-structures", "database", ] license = "Apache-2.0" repository = "https://github.com/henke443/fast-list" [[bench]] name = "fast_list" harness = false [dependencies.hashbrown] version = "0.14.3" features = [ "inline-more", "ahash", ] optional = true [dependencies.slotmap] version = "1.0" [dependencies.thiserror] version = "1.0.58" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.crossbeam] version = "0.8.4" [dev-dependencies.graphlib] version = "0.6.3" [features] default = [ "hashbrown", "std", ] hashbrown = ["dep:hashbrown"] std = [] unstable = []