Sergey Konev
a8d83b9bab
Some checks failed
Continuous integration / Tests (push) Blocked by required conditions
Continuous integration / Tests (windows-latest) (push) Waiting to run
Continuous integration / Check clippy, formatting, and documentation (push) Failing after 20s
Continuous integration / Tests (ubuntu-latest) (push) Failing after 22s
Continuous integration / Check fuzzers (push) Failing after 18s
Continuous integration / Check mininum Rust version (push) Failing after 20s
66 lines
1.5 KiB
TOML
66 lines
1.5 KiB
TOML
# 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 = "2018"
|
|
name = "libdeflater"
|
|
version = "1.22.0"
|
|
authors = ["Adam Kewley <contact@adamkewley.com>"]
|
|
exclude = [
|
|
".git*",
|
|
".travis.yml",
|
|
"bench_data/",
|
|
"examples/",
|
|
"scripts/",
|
|
]
|
|
description = """
|
|
Bindings to libdeflate for DEFLATE (de)compression exposed as non-streaming buffer
|
|
operations. Contains bindings for raw deflate, zlib, and gzip data.
|
|
"""
|
|
homepage = "https://github.com/adamkewley/libdeflater"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"gzip",
|
|
"zlib",
|
|
"deflate",
|
|
"encoding",
|
|
]
|
|
categories = [
|
|
"compression",
|
|
"api-bindings",
|
|
]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/adamkewley/libdeflater"
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|
|
|
|
[dependencies.libdeflate-sys]
|
|
version = "1.22.0"
|
|
|
|
[dev-dependencies.adler32]
|
|
version = "1.2.0"
|
|
|
|
[dev-dependencies.criterion]
|
|
version = "0.3"
|
|
|
|
[dev-dependencies.flate2]
|
|
version = "1.0.11"
|
|
|
|
[features]
|
|
dynamic = ["libdeflate-sys/dynamic"]
|
|
freestanding = [
|
|
"libdeflate-sys/freestanding",
|
|
"use_rust_alloc",
|
|
]
|
|
use_rust_alloc = []
|