# 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 = "orx-concurrent-option" version = "1.3.0" authors = ["orxfun "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "ConcurrentOption is a lock-free concurrent read and write option type." readme = "README.md" keywords = [ "concurrency", "option", "data-structures", "atomic", "lock-free", ] categories = [ "data-structures", "concurrency", "rust-patterns", "no-std", ] license = "MIT" repository = "https://github.com/orxfun/orx-concurrent-option/" [lib] name = "orx_concurrent_option" path = "src/lib.rs" [[test]] name = "common_traits" path = "tests/common_traits.rs" [[test]] name = "concurrent_basic" path = "tests/concurrent_basic.rs" [[test]] name = "concurrent_clone_into_option" path = "tests/concurrent_clone_into_option.rs" [[test]] name = "concurrent_get_or_insert" path = "tests/concurrent_get_or_insert.rs" [[test]] name = "concurrent_get_or_insert_with" path = "tests/concurrent_get_or_insert_with.rs" [[test]] name = "concurrent_init_and_read" path = "tests/concurrent_init_and_read.rs" [[test]] name = "concurrent_initialize_if_none" path = "tests/concurrent_initialize_if_none.rs" [[test]] name = "concurrent_initialize_unchecked" path = "tests/concurrent_initialize_unchecked.rs" [[test]] name = "concurrent_insert" path = "tests/concurrent_insert.rs" [[test]] name = "concurrent_raw_get" path = "tests/concurrent_raw_get.rs" [[test]] name = "concurrent_read_and_write" path = "tests/concurrent_read_and_write.rs" [[test]] name = "concurrent_replace" path = "tests/concurrent_replace.rs" [[test]] name = "concurrent_take" path = "tests/concurrent_take.rs" [[test]] name = "concurrent_take_if" path = "tests/concurrent_take_if.rs" [[test]] name = "concurrent_update_if_some" path = "tests/concurrent_update_if_some.rs" [[test]] name = "into_option" path = "tests/into_option.rs" [[test]] name = "iter" path = "tests/iter.rs" [[test]] name = "iter_mut" path = "tests/iter_mut.rs" [[test]] name = "new" path = "tests/new.rs" [[test]] name = "option" path = "tests/option.rs" [[test]] name = "raw" path = "tests/raw.rs" [dependencies] [dev-dependencies.test-case] version = "3.3.1" [features] default = []