mirror of https://github.com/fafhrd91/actix-net
fix default features
the bytes crate is only no-std with no default features...
This commit is contained in:
parent
bb36e2a072
commit
70548f6b50
|
@ -18,7 +18,7 @@ name = "bytestring"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "1.2"
|
bytes = { version = "1.2", default-features = false }
|
||||||
serde = { version = "1.0", optional = true }
|
serde = { version = "1.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
Loading…
Reference in New Issue