forked from rust-lang/libz-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo-zng.toml
42 lines (36 loc) · 896 Bytes
/
Cargo-zng.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "libz-ng-sys"
version = "1.1.20"
authors = [
"Alex Crichton <[email protected]>",
"Josh Triplett <[email protected]>",
"Sebastian Thiel <[email protected]>",
]
links = "z-ng"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/libz-sys"
description = "Low-level bindings to zlib-ng (libz-ng), a high-performance zlib library."
categories = ["compression", "external-ffi-bindings"]
keywords = ["zlib", "zlib-ng"]
edition = "2018"
exclude = [
"/.github",
"/.gitmodules",
"/README.md",
"/build.rs",
"/cargo-zng",
"/ci",
"/src/smoke.c",
"/src/zlib",
"/systest",
]
build = "zng/cmake.rs"
readme = "README-zng.md"
[workspace]
members = ["systest"]
[dependencies]
libc = "0.2.43"
[build-dependencies]
cmake = "0.1.50"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(zng)'] }