# 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 = "candystore" version = "0.5.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A lean, efficient and fast peristent in-process key-value store" readme = "README.md" keywords = [ "key-value", "database", "persistent", "store", "rocksdb", ] license = "Apache-2.0" repository = "https://github.com/sweet-security/candystore" [lib] name = "candystore" path = "src/lib.rs" [[example]] name = "atomics" path = "examples/atomics.rs" [[example]] name = "lists" path = "examples/lists.rs" [[example]] name = "multithreaded" path = "examples/multithreaded.rs" [[example]] name = "simple" path = "examples/simple.rs" [[example]] name = "typed" path = "examples/typed.rs" [[test]] name = "test_atomics" path = "tests/test_atomics.rs" [[test]] name = "test_bigval" path = "tests/test_bigval.rs" [[test]] name = "test_flush_agg" path = "tests/test_flush_agg.rs" [[test]] name = "test_list_collisions" path = "tests/test_list_collisions.rs" [[test]] name = "test_lists" path = "tests/test_lists.rs" [[test]] name = "test_loading" path = "tests/test_loading.rs" [[test]] name = "test_logic" path = "tests/test_logic.rs" [[test]] name = "test_merge" path = "tests/test_merge.rs" [[test]] name = "test_multithreading" path = "tests/test_multithreading.rs" [[test]] name = "test_pre_split" path = "tests/test_pre_split.rs" [[test]] name = "test_queues" path = "tests/test_queues.rs" [[test]] name = "test_typed" path = "tests/test_typed.rs" [dependencies.anyhow] version = "1.0.86" [dependencies.bytemuck] version = "1.16.3" features = ["derive"] [dependencies.crossbeam-channel] version = "0.5.13" [dependencies.databuf] version = "0.5.0" [dependencies.fslock] version = "0.2.1" [dependencies.libc] version = "0.2.158" [dependencies.memmap] version = "0.7.0" [dependencies.parking_lot] version = "0.12.3" [dependencies.rand] version = "0.8.5" [dependencies.simd-itertools] version = "0.2.3" [dependencies.siphasher] version = "1.0.1" [dependencies.uuid] version = "1.10.0" [features] flush_aggregation = [] whitebox_testing = []