# 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 = "sliding_tree" version = "0.2.0" authors = ["Robin KAY "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A tree that grows from the leaves and recedes from the root." homepage = "https://www.robinkay.uk/" readme = "README.md" keywords = [ "tree", "arena", ] categories = ["data-structures"] license = "MIT OR Apache-2.0" repository = "https://github.com/komadori/sliding_tree" [lib] name = "sliding_tree" path = "src/lib.rs" [[test]] name = "buffers" path = "tests/buffers.rs" [[test]] name = "mcts" path = "tests/mcts.rs" [[test]] name = "tree" path = "tests/tree.rs" [[bench]] name = "mcts_benchmark" path = "benches/mcts_benchmark.rs" harness = false [dependencies.smallvec] version = "1" [dev-dependencies.criterion] version = "0.5" [dev-dependencies.enumoid] version = "0.4" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_pcg] version = "0.3"