File tree 5 files changed +13
-13
lines changed
5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ homepage = "https://github.com/uuid-rs/uuid"
29
29
name = " uuid"
30
30
readme = " README.md"
31
31
repository = " https://github.com/uuid-rs/uuid"
32
- version = " 1.14 .0" # remember to update html_root_url in lib.rs
32
+ version = " 1.15 .0" # remember to update html_root_url in lib.rs
33
33
rust-version = " 1.63.0"
34
34
35
35
[package .metadata .docs .rs ]
@@ -84,7 +84,7 @@ borsh = ["dep:borsh", "dep:borsh-derive"]
84
84
85
85
# Public: Used in trait impls on `Uuid`
86
86
[dependencies .bytemuck ]
87
- version = " 1.14 .0"
87
+ version = " 1.15 .0"
88
88
optional = true
89
89
features = [" derive" ]
90
90
@@ -135,7 +135,7 @@ optional = true
135
135
[target .'cfg(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown"))' .dependencies .uuid-rng-internal-lib ]
136
136
# Work-around lack of support for both `dep:x` and `x/` in MSRV
137
137
package = " uuid-rng-internal"
138
- version = " 1.14 .0"
138
+ version = " 1.15 .0"
139
139
path = " rng"
140
140
optional = true
141
141
@@ -158,7 +158,7 @@ version = "1"
158
158
159
159
# Public: Re-exported
160
160
[dependencies .uuid-macro-internal ]
161
- version = " 1.14 .0"
161
+ version = " 1.15 .0"
162
162
path = " macros"
163
163
optional = true
164
164
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Add the following to your `Cargo.toml`:
28
28
29
29
``` toml
30
30
[dependencies .uuid ]
31
- version = " 1.14 .0"
31
+ version = " 1.15 .0"
32
32
features = [
33
33
" v4" , # Lets you generate random UUIDs
34
34
]
@@ -63,11 +63,11 @@ assert_eq!(Some(Version::Random), my_uuid.get_version());
63
63
If you'd like to parse UUIDs _ really_ fast, check out the [ ` uuid-simd ` ] ( https://github.com/nugine/uuid-simd )
64
64
library.
65
65
66
- For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.14 .0/uuid ) .
66
+ For more details on using ` uuid ` , [ see the library documentation] ( https://docs.rs/uuid/1.15 .0/uuid ) .
67
67
68
68
## References
69
69
70
- * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.14 .0/uuid ) .
70
+ * [ ` uuid ` library docs] ( https://docs.rs/uuid/1.15 .0/uuid ) .
71
71
* [ Wikipedia: Universally Unique Identifier] ( http://en.wikipedia.org/wiki/Universally_unique_identifier ) .
72
72
* [ RFC 9562: Universally Unique IDentifiers (UUID)] ( https://www.ietf.org/rfc/rfc9562.html ) .
73
73
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-macro-internal"
3
- version = " 1.14 .0"
3
+ version = " 1.15 .0"
4
4
edition = " 2018"
5
5
authors = [
6
6
" QnnOkabayashi"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uuid-rng-internal"
3
- version = " 1.14 .0"
3
+ version = " 1.15 .0"
4
4
edition = " 2018"
5
5
authors = [
6
6
" uuid-rs contributors"
Original file line number Diff line number Diff line change 38
38
//!
39
39
//! ```toml
40
40
//! [dependencies.uuid]
41
- //! version = "1.14 .0"
41
+ //! version = "1.15 .0"
42
42
//! features = [
43
43
//! "v4", # Lets you generate random UUIDs
44
44
//! "fast-rng", # Use a faster (but still sufficiently random) RNG
140
140
//!
141
141
//! ```toml
142
142
//! [dependencies.uuid]
143
- //! version = "1.14 .0"
143
+ //! version = "1.15 .0"
144
144
//! features = [
145
145
//! "v4",
146
146
//! "v7",
155
155
//!
156
156
//! ```toml
157
157
//! [dependencies.uuid]
158
- //! version = "1.14 .0"
158
+ //! version = "1.15 .0"
159
159
//! default-features = false
160
160
//! ```
161
161
//!
213
213
#![ doc(
214
214
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
215
215
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
216
- html_root_url = "https://docs.rs/uuid/1.14 .0"
216
+ html_root_url = "https://docs.rs/uuid/1.15 .0"
217
217
) ]
218
218
219
219
#[ cfg( any( feature = "std" , test) ) ]
You can’t perform that action at this time.
0 commit comments