Skip to content

Commit

Permalink
Move libc back to a non-optional dependency
Browse files Browse the repository at this point in the history
Closes #205
  • Loading branch information
alexcrichton committed Aug 14, 2019
1 parent 6dd9602 commit b00caf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ streams.
members = ['systest']

[dependencies]
libc = { version = "0.2", optional = true }
libc = "0.2"
miniz-sys = { path = "miniz-sys", version = "0.1.11", optional = true }
libz-sys = { version = "1.0", optional = true }
tokio-io = { version = "0.1.11", optional = true }
Expand All @@ -40,8 +40,8 @@ tokio-threadpool = "0.1.10"
futures = "0.1"

[features]
default = ["miniz-sys", "libc"]
zlib = ["libz-sys", "libc"]
default = ["miniz-sys"]
zlib = ["libz-sys"]
rust_backend = ["miniz_oxide"]
tokio = ["tokio-io", "futures"]

Expand Down

0 comments on commit b00caf4

Please sign in to comment.