Skip to content

Commit

Permalink
Pass down no_std to dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
dongcarl committed Jul 10, 2019
1 parent 4ac63b7 commit 01ae9cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -14,17 +14,17 @@ path = "src/lib.rs"

[features]
default = [ "std" ]
std = []
std = ["byteorder/std", "serde/std"]
unstable = [] # for benchmarking
fuzztarget = [] # used by other rust-bitcoin projects to make hashes almost-noops, DON'T USE THIS

[dev-dependencies]
serde_test = "1.0"

[dependencies]
byteorder = "1.2"
byteorder = { version = "1.2", default-features = false }

[dependencies.serde]
version = "1.0"
optional = true

default-features = false

0 comments on commit 01ae9cb

Please sign in to comment.