# 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" rust-version = "1.80" name = "dcl_data_structures" version = "0.7.0" authors = ["Marvin Hansen "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Data structures for for deep_causality crate." documentation = "https://docs.rs/deep_causality" readme = "README.md" keywords = [ "data-structures", "sliding-window", "grid-array", "ringbuffer", "disruptor", ] categories = [ "data-structures", "science", ] license = "MIT" repository = "https://github.com/deepcausality/deep_causality.rs" [lib] name = "dcl_data_structures" path = "src/lib.rs" [[example]] name = "array_grid" path = "examples/array_grid/array_grid.rs" [[example]] name = "ring_buffer_multi_producer_multi_consumer" path = "examples/ring_buffer/ring_buffer_multi_producer_multi_consumer.rs" [[example]] name = "ring_buffer_multi_producer_single_consumer" path = "examples/ring_buffer/ring_buffer_multi_producer_single_consumer.rs" [[example]] name = "ring_buffer_single_producer_multi_consumer" path = "examples/ring_buffer/ring_buffer_single_producer_multi_consumer.rs" [[example]] name = "ring_buffer_single_producer_single_consumer" path = "examples/ring_buffer/ring_buffer_single_producer_single_consumer.rs" [[example]] name = "window_type_array_storage" path = "examples/window_type/array_storage.rs" [[example]] name = "window_type_unsafe_array_storage" path = "examples/window_type/unsafe_array_storage.rs" [[example]] name = "window_type_unsafe_vector_storage" path = "examples/window_type/unsafe_vector_storage.rs" [[example]] name = "window_type_vector_storage" path = "examples/window_type/vector_storage.rs" [[test]] name = "mod" path = "tests/mod.rs" [[bench]] name = "bench_dcl_data_structures" path = "benches/bench_dcl_data_structures.rs" harness = false [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.crossbeam-utils] version = "0.8" [dev-dependencies.rand] version = "0.8" features = ["small_rng"] [features] default = [] unsafe = []