Skip to content
Draft
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

- Updated `hash32` from `0.3.0` to `1.0.0`.
- Updated defmt from 0.3 to 1.0.1
- Changed the feature name from `defmt-03` to `defmt`.
- Changed the error type of these methods from `()` to `CapacityError`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ nightly = []
[dependencies]
bytes = { version = "1", default-features = false, optional = true }
portable-atomic = { version = "1.0", optional = true }
hash32 = "0.3.0"
hash32 = { git = "https://github.com/rust-embedded-community/hash32.git", rev = "e25fe5b4d22a0e0eca9201add6c78b683d2fdc87" }
serde = { version = "1", optional = true, default-features = false }
ufmt = { version = "0.2", optional = true }
ufmt-write = { version = "0.1", optional = true }
Expand Down
3 changes: 1 addition & 2 deletions src/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ use crate::{
};
use core::{
fmt,
hash::{Hash, Hasher},
hash::{BuildHasherDefault, Hash, Hasher},
marker::PhantomData,
};
use hash32::BuildHasherDefault;
use serde::de::{self, Deserialize, Deserializer, Error, MapAccess, SeqAccess};

// Sequential containers
Expand Down
4 changes: 2 additions & 2 deletions src/index_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
use core::{
borrow::Borrow,
fmt,
hash::{BuildHasher, Hash},
hash::{BuildHasher, BuildHasherDefault, Hash},
mem,
num::NonZeroU32,
ops, slice,
};

use hash32::{BuildHasherDefault, FnvHasher};
use hash32::FnvHasher;

use crate::Vec;

Expand Down
4 changes: 2 additions & 2 deletions src/index_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
use core::{
borrow::Borrow,
fmt,
hash::{BuildHasher, Hash},
hash::{BuildHasher, BuildHasherDefault, Hash},
};

use hash32::{BuildHasherDefault, FnvHasher};
use hash32::FnvHasher;

use crate::index_map::{self, IndexMap};

Expand Down