Skip to content

Commit d5b5a1a

Browse files
committed
Minor cleanup
1 parent 319b63f commit d5b5a1a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ doc-comment = "0.3.1"
3434

3535
[features]
3636
default = ["ahash", "inline-more"]
37+
3738
ahash-compile-time-rng = ["ahash/compile-time-rng"]
3839
nightly = []
3940
rustc-internal-api = []

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,16 @@ map.insert(1, "one");
9898
## Flags
9999
This crate has the following Cargo features:
100100

101-
- `nightly`: Enables nightly-only features including: `#[may_dangle]`
101+
- `nightly`: Enables nightly-only features including: `#[may_dangle]`.
102102
- `serde`: Enables serde serialization support.
103103
- `rayon`: Enables rayon parallel iterator support.
104104
- `raw`: Enables access to the experimental and unsafe `RawTable` API.
105105
- `inline-more`: Adds inline hints to most functions, improving run-time performance at the cost
106-
of compilation time. (enabled by default)
106+
of compilation time. (enabled by default)
107107
- `ahash`: Compiles with ahash as default hasher. (enabled by default)
108108
- `ahash-compile-time-rng`: Activates the `compile-time-rng` feature of ahash. For targets with no random number generator
109109
this pre-generates seeds at compile time and embeds them as constants. See [aHash's documentation](https://github.com/tkaitchuck/aHash#flags) (disabled by default)
110110

111-
112111
## License
113112

114113
Licensed under either of:

0 commit comments

Comments
 (0)