Skip to content

Commit 6212182

Browse files
refactor: remove hashbrown deps since we can use std
1 parent f671b0b commit 6212182

File tree

3 files changed

+0
-27
lines changed

3 files changed

+0
-27
lines changed

Cargo.lock

Lines changed: 0 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/stdx/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ backtrace = { version = "0.3.67", optional = true }
1717
always-assert = { version = "0.1.2", features = ["log"] }
1818
jod-thread = "0.1.2"
1919
crossbeam-channel = "0.5.5"
20-
hashbrown = { version = "0.14.0" }
2120
# Think twice before adding anything here
2221

2322
[target.'cfg(windows)'.dependencies]

crates/stdx/src/anymap.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
//! - **std** (default, *enabled* in this build):
1616
//! an implementation using `std::collections::hash_map`, placed in the crate root
1717
//! (e.g. `anymap::AnyMap`).
18-
//!
19-
//! - **hashbrown** (optional; *enabled* in this build):
20-
//! an implementation using `alloc` and `hashbrown::hash_map`, placed in a module `hashbrown`
21-
//! (e.g. `anymap::hashbrown::AnyMap`).
2218
2319
#![warn(missing_docs, unused_results)]
2420

0 commit comments

Comments
 (0)