Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Sep 4, 2023
1 parent f28b944 commit 25d3ca1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ default = ["std"]
std = ["hex?/std", "serde?/std", "alloc"]
alloc = ["hex?/alloc", "serde?/alloc"]

# Forces generic implementation, overriding any specialized implementation (e.g. x86 or aarch64)
force-generic = []

# Serde support. Use with `#[serde(with = "const_hex")]`
serde = ["hex?/serde", "dep:serde"]

# Use `hex`'s traits instead of our own.
# This should not be needed most of the time.
hex = ["dep:hex"]

# Forces generic implementation, overriding any specialized implementation (e.g. x86 or aarch64)
force-generic = []

# Support for the `portable-simd` nightly feature.
# Note that `-Zbuild-std` may be necessary to unlock better performance than
# the specialized implementations.
Expand Down
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,24 @@ test format_std::bench3_4096 ... bench: 61,688 ns/iter (+/- 1,994)

## Acknowledgements

- [`hex`] for the initial encoding/decoding implementations
- [dtolnay]/[itoa] for the initial crate/library API layout
- [`hex`] for the initial encoding/decoding implementations
- [dtolnay]/[itoa] for the initial crate/library API layout

[`hex`]: https://crates.io/crates/hex
[dtolnay]: https://github.com/dtolnay
[itoa]: https://github.com/dtolnay/itoa

## License
#### License

Licensed under either of [Apache License, Version 2.0](./LICENSE-APACHE) or
[MIT license](./LICENSE-MIT) at your option.
<sup>
Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
</sup>

<br>

<sub>
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.
for inclusion in these crates by you, as defined in the Apache-2.0 license,
shall be dual licensed as above, without any additional terms or conditions.
</sub>

0 comments on commit 25d3ca1

Please sign in to comment.