# 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" rust-version = "1.79.0" name = "arithmetic-coding" version = "0.4.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "fast and flexible arithmetic coding library" readme = "README.md" keywords = [ "compression", "encoding", "arithmetic-coding", "lossless", ] categories = [ "compression", "encoding", "parsing", ] license = "MIT" repository = "https://github.com/danieleades/arithmetic-coding" [lib] name = "arithmetic_coding" path = "src/lib.rs" [[example]] name = "concatenated" path = "examples/concatenated.rs" [[example]] name = "fenwick_adaptive" path = "examples/fenwick_adaptive.rs" [[example]] name = "fenwick_context_switching" path = "examples/fenwick_context_switching.rs" [[example]] name = "fixed_length" path = "examples/fixed_length.rs" [[example]] name = "integer" path = "examples/integer.rs" [[example]] name = "max_length" path = "examples/max_length.rs" [[example]] name = "sherlock" path = "examples/sherlock.rs" [[example]] name = "symbolic" path = "examples/symbolic.rs" [[test]] name = "concatenated" path = "tests/concatenated.rs" [[test]] name = "fixed_length" path = "tests/fixed_length.rs" [[test]] name = "fuzz" path = "tests/fuzz.rs" [[test]] name = "max_length" path = "tests/max_length.rs" [[test]] name = "sherlock" path = "tests/sherlock.rs" [[bench]] name = "sherlock" path = "benches/sherlock.rs" harness = false [dependencies.arithmetic-coding-core] version = "0.4.0" [dependencies.bitstream-io] version = "2.0.0" [dependencies.thiserror] version = "1.0.30" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.fenwick-model] version = "0.1.0" [dev-dependencies.test-case] version = "3.0.0" [lints.clippy] all = "deny" cargo = "deny" nursery = "warn" pedantic = "warn"