-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathCargo.toml
35 lines (29 loc) · 930 Bytes
/
Cargo.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
[package]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
authors = ["Alex Crichton <[email protected]>"]
links = "bzip2"
build = "build.rs"
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/bzip2-rs"
homepage = "https://github.com/alexcrichton/bzip2-rs"
documentation = "https://docs.rs/bzip2-sys"
description = """
Bindings to libbzip2 for bzip2 compression and decompression exposed as
Reader/Writer streams.
"""
categories = ["external-ffi-bindings"]
[lib]
name = "bzip2_sys"
path = "lib.rs"
[dependencies]
libc = "0.2"
[build-dependencies]
pkg-config = "0.3.9"
cc = "1.0"
[features]
# Enable this feature if you want to have a statically linked bzip2
static = []
fat-lto = [] # Enable fat-lto, will override thin-lto if specified
thin-lto = [] # Enable thin-lto, will fallback to fat-lto if not supported
thin = [] # Use -Oz is possible, otherwise fallback to -Os or -O2. For msvc it will be /O1