mirror of
https://github.com/uuid-rs/uuid.git
synced 2025-10-02 07:20:40 +00:00
Merge pull request #596 from KodrAus/cargo/1.0.0
Prepare for 1.0.0 release
This commit is contained in:
commit
9e0dc29274
@ -30,7 +30,7 @@ homepage = "https://github.com/uuid-rs/uuid"
|
|||||||
name = "uuid"
|
name = "uuid"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/uuid-rs/uuid"
|
repository = "https://github.com/uuid-rs/uuid"
|
||||||
version = "1.0.0-alpha.1" # remember to update html_root_url in lib.rs
|
version = "1.0.0" # remember to update html_root_url in lib.rs
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = ["serde", "arbitrary", "slog", "v1", "v3", "v4", "v5"]
|
features = ["serde", "arbitrary", "slog", "v1", "v3", "v4", "v5"]
|
||||||
@ -132,7 +132,7 @@ version = "1"
|
|||||||
# Use the `macro-diagnostics` feature instead
|
# Use the `macro-diagnostics` feature instead
|
||||||
[dependencies.private_uuid-macro-internal]
|
[dependencies.private_uuid-macro-internal]
|
||||||
package = "uuid-macro-internal"
|
package = "uuid-macro-internal"
|
||||||
version = "1.0.0-alpha.1"
|
version = "1.0.0"
|
||||||
path = "macros"
|
path = "macros"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ Add the following to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies.uuid]
|
[dependencies.uuid]
|
||||||
version = "1.0.0-alpha.1"
|
version = "1.0.0"
|
||||||
features = [
|
features = [
|
||||||
"v4", # Lets you generate random UUIDs
|
"v4", # Lets you generate random UUIDs
|
||||||
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
"fast-rng", # Use a faster (but still sufficiently random) RNG
|
||||||
@ -66,7 +66,7 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
|
|||||||
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
|
If you'd like to parse UUIDs _really_ fast, check out the [`uuid-simd`](https://github.com/nugine/uuid-simd)
|
||||||
library.
|
library.
|
||||||
|
|
||||||
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.0.0-alpha.1/uuid).
|
For more details on using `uuid`, [see the library documentation](https://docs.rs/uuid/1.0.0/uuid).
|
||||||
|
|
||||||
## Minimum Supported Rust Version (MSRV)
|
## Minimum Supported Rust Version (MSRV)
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ CI. It may be bumped in minor releases as necessary.
|
|||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
* [`uuid` library docs](https://docs.rs/uuid/1.0.0-alpha.1/uuid).
|
* [`uuid` library docs](https://docs.rs/uuid/1.0.0/uuid).
|
||||||
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
|
* [Wikipedia: Universally Unique Identifier](http://en.wikipedia.org/wiki/Universally_unique_identifier).
|
||||||
* [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122).
|
* [RFC4122: A Universally Unique IDentifier (UUID) URN Namespace](http://tools.ietf.org/html/rfc4122).
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "uuid-macro-internal"
|
name = "uuid-macro-internal"
|
||||||
version = "1.0.0-alpha.1"
|
version = "1.0.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = [
|
authors = [
|
||||||
"QnnOkabayashi"
|
"QnnOkabayashi"
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies.uuid]
|
//! [dependencies.uuid]
|
||||||
//! version = "1.0.0-alpha.1"
|
//! version = "1.0.0"
|
||||||
//! features = [
|
//! features = [
|
||||||
//! "v4", # Lets you generate random UUIDs
|
//! "v4", # Lets you generate random UUIDs
|
||||||
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
|
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
|
||||||
@ -200,7 +200,7 @@
|
|||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
||||||
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
|
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
|
||||||
html_root_url = "https://docs.rs/uuid/1.0.0-alpha.1"
|
html_root_url = "https://docs.rs/uuid/1.0.0"
|
||||||
)]
|
)]
|
||||||
|
|
||||||
#[cfg(any(feature = "std", test))]
|
#[cfg(any(feature = "std", test))]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user