# 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 = "ropey" version = "2.0.0-alpha.2" authors = ["Nathan Vegdahl "] build = false exclude = [ "/design/*", "/fuzz", "/.github/*", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A fast and robust text rope for Rust" documentation = "https://docs.rs/ropey" readme = "README.md" keywords = [ "rope", "text", "edit", "buffer", ] categories = [ "text-processing", "data-structures", ] license = "MIT OR Apache-2.0" repository = "https://github.com/cessen/ropey" [package.metadata.docs.rs] features = [ "metric_chars", "metric_utf16", "metric_lines_lf", "metric_lines_lf_cr", "metric_lines_unicode", ] [lib] name = "ropey" path = "src/lib.rs" [[test]] name = "proptest_tests" path = "tests/proptest_tests.rs" [[bench]] name = "create" path = "benches/create.rs" harness = false [[bench]] name = "hash" path = "benches/hash.rs" harness = false [[bench]] name = "insert" path = "benches/insert.rs" harness = false [[bench]] name = "iterators" path = "benches/iterators.rs" harness = false [[bench]] name = "queries" path = "benches/queries.rs" harness = false [[bench]] name = "remove" path = "benches/remove.rs" harness = false [dependencies.str_indices] version = "0.4" default-features = false [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.fnv] version = "1" [dev-dependencies.fxhash] version = "0.2" [dev-dependencies.proptest] version = "1.4" [dev-dependencies.rand] version = "0.8" [features] default = [ "metric_lines_lf_cr", "simd", ] internal_dev_small_chunks = [] metric_chars = [] metric_lines_lf = [] metric_lines_lf_cr = [] metric_lines_unicode = [] metric_utf16 = [] simd = ["str_indices/simd"]