Commit c0a17b25 authored by Stanislav Tkach's avatar Stanislav Tkach Committed by Bastian Köcher
Browse files

Update byte-slice-cast version to support no_std (#142)

parent 3c2e0423
Pipeline #44911 passed with stages
in 16 minutes and 12 seconds
......@@ -13,7 +13,7 @@ arrayvec = { version = "0.4", default-features = false, features = ["array-sizes
serde = { version = "1.0", optional = true }
parity-scale-codec-derive = { path = "derive", version = "1.0", default-features = false, optional = true }
bitvec = { version = "0.14.0", default-features = false, features = ["alloc"], optional = true }
byte-slice-cast = { version = "0.3.1", optional = true }
byte-slice-cast = { version = "0.3.2", default-features = false, optional = true }
generic-array = { version = "0.12", optional = true }
vecarray = { version = "0.1", default-features = false, optional = true }
typenum = { version = "1.10", optional = true }
......@@ -34,7 +34,7 @@ bench = false
[features]
default = ["std"]
derive = ["parity-scale-codec-derive"]
std = ["serde", "bitvec/std", "vecarray/std"]
std = ["serde", "bitvec/std", "byte-slice-cast/std", "vecarray/std"]
bit-vec = ["bitvec", "byte-slice-cast"]
vec-array = ["vecarray", "typenum"]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment