Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ edition = "2021"
rust-version = "1.67"

[dependencies]
borsh = { version = "1.5.5", default-features = false, features = ["derive"], optional = true }
borsh = { version = "1.5.7", default-features = false, features = ["derive"], optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
miniserde = { version = "0.1", optional = true }
nanoserde = { version = "0.1", optional = true }
nanoserde = { version = "0.2", optional = true }

[dev-dependencies]
serde_json = "1.0"
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,6 @@ Add this to your Cargo.toml:
bit-vec = "0.8"
```

Since Rust 2018, `extern crate` is no longer mandatory. If your edition is old (Rust 2015),
add this to your crate root:

```rust
extern crate bit_vec;
```

If you want [serde](https://github.com/serde-rs/serde) support, include the feature like this:

```toml
Expand Down
11 changes: 11 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 0.9.0 (TO BE RELEASED)
==========================

<a id="v0.9.0"></a>

- `fn push_within_capacity` is implemented
- `.skip(n)` on our iterators is now O(1) instead of O(n) time
- Minimal Supported Rust Version is now 1.67
- some clippy lints are enabled
- nanoserde version is now 0.2

Version 0.8.0 (2024-07-16)
==========================

Expand Down
Loading