# 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 = "lzss" version = "0.9.1" authors = ["ALeX Kazik "] description = "A LZSS en-/decompressor (lossless data compression, no_std capable, in pure Rust)" readme = "README.md" keywords = [ "lzss", "compression", "no_std", ] categories = [ "compression", "no-std", ] license = "MIT" repository = "https://github.com/alexkazik/lzss" resolver = "1" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [[bench]] name = "benchmark" harness = false [dependencies.void] version = "1.0.2" default-features = false [dev-dependencies.criterion] version = "0.4" [features] alloc = [] default = [ "std", "safe", ] safe = [] std = [ "void/std", "alloc", ]