Skip to content

Commit

Permalink
Disable default features of stable_deref_trait
Browse files Browse the repository at this point in the history
std is listed in the default features of stable_deref_trait
  • Loading branch information
est31 committed Jun 9, 2018
1 parent 77afb0a commit f3c3e6b
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 @@ -18,7 +18,7 @@ coveralls = { repository = "gimli-rs/gimli" }
arrayvec = { version = "0.4.6", default-features = false }
byteorder = { version = "1.0", default-features = false }
fallible-iterator = { version = "0.1.4", default-features = false }
stable_deref_trait = "1.0.0"
stable_deref_trait = { version = "1.0.0", default-features = false }

[dev-dependencies]
crossbeam = "0.3.2"
Expand All @@ -32,6 +32,6 @@ test-assembler = "0.1.3"
typed-arena = "1"

[features]
std = ["fallible-iterator/std"]
alloc = ["fallible-iterator/alloc"]
std = ["fallible-iterator/std", "stable_deref_trait/std"]
alloc = ["fallible-iterator/alloc", "stable_deref_trait/alloc"]
default = ["std"]

0 comments on commit f3c3e6b

Please sign in to comment.