[go: up one dir, main page]

libz-rs-sys 0.1.1

A memory-safe zlib implementation written in rust
Documentation
[package]
name = "libz-rs-sys"
readme.workspace = true
description.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
publish.workspace = true
rust-version.workspace = true

[lib]
crate-type=["rlib", "cdylib"]

[features]
default = ["std", "rust-allocator"] # when used as a rust crate, use the rust allocator
c-allocator = [] # by default, use malloc/free for memory allocation
rust-allocator = [] # by default, use the rust global alloctor for memory allocation
std = [] # assume `::std` is available

[dependencies]
zlib-rs = { workspace = true }
libc.workspace = true

[dev-dependencies]
zlib-rs = { workspace = true, features = [ "__internal-test" ] }
libz-sys.workspace = true
libloading.workspace = true
load-dynamic-libz-ng.workspace = true
crc32fast = "1.3.2"
quickcheck = "1.0.3"