# 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 = "fsst-rust" version = "0.1.1" authors = ["Herbert Long "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "FSST-Rust is a pure rust implementation of the Fast Static Symbol Table" documentation = "https://docs.rs/fsst-rust" readme = "README.md" keywords = [ "fsst", "fast_static_symtab", "string_encoding", ] categories = [ "compression", "encoding", ] license = "Apache-2.0" repository = "https://github.com/Morgan279/FSST-Rust" [profile.release] opt-level = 3 lto = true codegen-units = 1 debug = 0 debug-assertions = false rpath = false panic = "unwind" overflow-checks = false incremental = false [lib] name = "fsst_rust" path = "src/lib.rs" [[example]] name = "single_str" path = "examples/single_str.rs" [[example]] name = "str_from_file" path = "examples/str_from_file.rs" [[bench]] name = "compress" path = "benches/compress.rs" harness = false [[bench]] name = "decompress" path = "benches/decompress.rs" harness = false [dependencies] [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.zstd] version = "0.13" [target.'cfg(not(target_env = "msvc"))'.dev-dependencies.jemallocator] version = "0.5"