File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11//! `UUID` types.
22
3- mod uuid_v4 ;
4- mod uuid_v7 ;
3+ mod v4 ;
4+ mod v7 ;
55
6- pub use uuid_v4 :: UuidV4 ;
7- pub use uuid_v7 :: UuidV7 ;
6+ pub use v4 :: UuidV4 as V4 ;
7+ pub use v7 :: UuidV7 as V7 ;
88
99/// Invalid Doc Type UUID
1010pub const INVALID_UUID : uuid:: Uuid = uuid:: Uuid :: from_bytes ( [ 0x00 ; 16 ] ) ;
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ fn test_type_usage() {
1111 type B = catalyst_types:: hashes:: Blake2b224Hash ;
1212 type C = catalyst_types:: hashes:: Blake2b256Hash ;
1313
14- type D = catalyst_types:: uuid:: UuidV4 ;
15- type E = catalyst_types:: uuid:: UuidV7 ;
14+ type D = catalyst_types:: uuid:: V4 ;
15+ type E = catalyst_types:: uuid:: V7 ;
1616
1717 let bytes: [ u8 ; 32 ] = [ 0 ; 32 ] ;
1818 let _ = catalyst_types:: hashes:: Blake2bHash :: from ( bytes) ;
You can’t perform that action at this time.
0 commit comments