# 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 = "b-tree" version = "0.4.0" authors = ["code@tinychain.net"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A persistent B+ tree using freqfs" readme = "README.md" keywords = [ "persistent", "ordered", "key", "index", "collection", ] categories = [ "database", "database-implementations", "data-structures", ] license = "Apache-2.0" repository = "https://github.com/haydnv/b-tree" [lib] name = "b_tree" path = "src/lib.rs" [[example]] name = "example" path = "examples/example.rs" required-features = ["stream"] [dependencies.async-trait] version = "0.1" optional = true [dependencies.collate] version = "0.4" [dependencies.destream] version = "0.8" optional = true [dependencies.freqfs] version = "0.10" [dependencies.futures] version = "0.3" [dependencies.get-size] version = "0.1" [dependencies.log] version = "0.4" features = ["release_max_level_info"] optional = true [dependencies.num_cpus] version = "1.16" [dependencies.pin-project] version = "1.0" [dependencies.safecast] version = "0.2" [dependencies.smallvec] version = "1.13" [dependencies.uuid] version = "1.10" [dev-dependencies.rand] version = "0.8" [dev-dependencies.tokio] version = "1.39" features = ["macros"] [features] all = [ "logging", "stream", ] logging = [ "log", "freqfs/logging", ] stream = [ "async-trait", "collate/stream", "destream", "freqfs/stream", ]