Use postcard with default-features = false (#1446)
This commit is contained in:
parent
65ec23fd35
commit
8f27b14eb8
@ -69,7 +69,7 @@ tuple_list = { version = "0.1.3" }
|
||||
hashbrown = { version = "0.14", features = ["serde", "ahash"], default-features=false } # A faster hashmap, nostd compatible
|
||||
num-traits = { version = "0.2", default-features = false }
|
||||
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } # serialization lib
|
||||
postcard = { version = "1.0", features = ["alloc"] } # no_std compatible serde serialization format
|
||||
postcard = { version = "1.0", features = ["alloc"], default-features = false } # no_std compatible serde serialization format
|
||||
bincode = {version = "1.3", optional = true }
|
||||
c2rust-bitfields = { version = "0.17", features = ["no_std"] }
|
||||
ahash = { version = "0.8", default-features=false } # The hash function already used in hashbrown
|
||||
|
@ -50,7 +50,7 @@ hashbrown = { version = "0.14", features = ["serde", "ahash"], default-features
|
||||
xxhash-rust = { version = "0.8.5", features = ["xxh3"] } # xxh3 hashing for rust
|
||||
serde = { version = "1.0", default-features = false, features = ["derive"] } # serialization lib
|
||||
erased-serde = { version = "0.3.21", default-features = false, optional = true } # erased serde
|
||||
postcard = { version = "1.0", features = ["alloc"], optional = true } # no_std compatible serde serialization format
|
||||
postcard = { version = "1.0", features = ["alloc"], default-features = false, optional = true } # no_std compatible serde serialization format
|
||||
num_enum = { version = "0.6", default-features = false }
|
||||
ahash = { version = "0.8", default-features=false, optional = true } # The hash function already used in hashbrown
|
||||
backtrace = {version = "0.3", optional = true} # Used to get the stacktrace in StacktraceObserver
|
||||
|
Loading…
x
Reference in New Issue
Block a user