Skip to content

Commit 42c9a32

Browse files
committed
disable bstr feature by default
1 parent 0e6ea5b commit 42c9a32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ name = "comparison"
3030
harness = false
3131

3232
[features]
33-
default = ["bstr"]
33+
default = []
3434
bstr = ["dep:bstr"]
3535
databuf = ["dep:databuf"]
3636
serde = ["bstr", "bstr/serde", "dep:serde"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ assert_eq!(map.get(borrowed_key), Some(&1));
7878

7979
The following features are available:
8080

81-
- `bstr` to add some type conversions, and the `Debug` and `Display` traits by using the [bstr](https://github.com/BurntSushi/bstr) crate - enabled by default
81+
- `bstr` to add some type conversions, and the `Debug` and `Display` traits by using the [bstr](https://github.com/BurntSushi/bstr) crate - disabled by default
8282
- `serde` to add the `Serialize` and `Deserialize` traits provided by the [serde](https://github.com/serde-rs/serde) crate - disabled by default
8383
- `databuf` to add the `Encode` and `Decode` traits provided by the [databuf](https://github.com/nurmohammed840/databuf.rs) crate - disabled by default
8484

0 commit comments

Comments
 (0)