Merge pull request #96 from paritytech/docs/uint0.6.1

docs(uint): U128 + version 0.6.1
This commit is contained in:
Wei Tang 2019-01-16 14:13:31 +01:00 committed by GitHub
commit 97e1b5f533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
## Description
Provides facilities to construct big unsigned integer types.
Also provides commonly used `U256` and `U512` out of the box.
Also provides commonly used `U128, U256` and `U512` out of the box.
The focus on the provided big unsigned integer types is performance and cross-platform availability.
Support a very similar API as the built-in primitive integer types.
@ -13,7 +13,7 @@ Support a very similar API as the built-in primitive integer types.
In your `Cargo.toml` paste
```
uint = "0.5.0-beta"
uint = "0.6"
```
Construct your own big unsigned integer type as follows.
@ -48,7 +48,7 @@ cargo bench
- `std`: Use Rust's standard library.
- Enables `byteorder/std`, `rustc-hex/std`
- Enabled by default.
- `common`: Provide commonly used `U256` and `U512` big unsigned integer types.
- `common`: Provide commonly used `U128`, `U256` and `U512` big unsigned integer types.
- Enabled by default.
- `quickcheck`: Enable quickcheck-style property testing
- Use with `cargo test --release --features=quickcheck`.