diff --git a/Cargo.toml b/Cargo.toml index f4213c7..6ee3fd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bit-vec" -version = "0.9.0" +version = "0.9.1" authors = ["Alexis Beingessner "] license = "Apache-2.0 OR MIT" description = "A vector of bits" @@ -13,8 +13,8 @@ edition = "2021" rust-version = "1.82" [dependencies] -borsh = { version = "1.5.7", default-features = false, features = ["derive"], optional = true } -serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } +borsh = { version = "1.6.0", default-features = false, features = ["derive"], optional = true } +serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true } miniserde = { version = "0.1", optional = true } nanoserde = { version = "0.2", optional = true } @@ -26,9 +26,9 @@ rand_xorshift = "0.4" [features] default = ["std"] serde_std = ["std", "serde/std"] -serde_no_std = ["serde/alloc"] +serde_no_std = [] borsh_std = ["borsh/std"] -std = [] +std = ["serde?/std"] [package.metadata.docs.rs] features = ["borsh", "serde", "miniserde", "nanoserde"] diff --git a/README.md b/README.md index d36ce0c..84780dc 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,12 @@ [crates.io shield]: https://img.shields.io/crates/v/bit-vec?label=latest [crates.io link]: https://crates.io/crates/bit-vec -[docs.rs badge]: https://docs.rs/bit-vec/badge.svg?version=0.9.0 -[docs.rs link]: https://docs.rs/bit-vec/0.9.0/bit_vec/ +[docs.rs badge]: https://docs.rs/bit-vec/badge.svg?version=0.9.1 +[docs.rs link]: https://docs.rs/bit-vec/0.9.1/bit_vec/ [github ci badge]: https://github.com/contain-rs/bit-vec/actions/workflows/rust.yml/badge.svg [rustc 1.82+]: https://img.shields.io/badge/rustc-1.82%2B-blue.svg -[deps.rs status]: https://deps.rs/crate/bit-vec/0.9.0/status.svg -[deps.rs link]: https://deps.rs/crate/bit-vec/0.9.0 +[deps.rs status]: https://deps.rs/crate/bit-vec/0.9.1/status.svg +[deps.rs link]: https://deps.rs/crate/bit-vec/0.9.1 [shields.io download count]: https://img.shields.io/crates/d/bit-vec.svg ## Usage diff --git a/RELEASES.md b/RELEASES.md index bd51a95..33b230d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -3,6 +3,13 @@ Version 0.10.0 (TO BE RELEASED) +Version 0.9.1 +========================== + + + +- Fixed issue with the serde feature + Version 0.9.0 ==========================