We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61f316 commit 1249484Copy full SHA for 1249484
rust/catalyst-types/src/uuid/mod.rs
@@ -1,10 +1,10 @@
1
//! `UUID` types.
2
3
-mod v4;
4
-mod v7;
+mod uuid_v4;
+mod uuid_v7;
5
6
-pub use v4::UuidV4 as V4;
7
-pub use v7::UuidV7 as V7;
+pub use uuid_v4::UuidV4 as V4;
+pub use uuid_v7::UuidV7 as V7;
8
9
/// Invalid Doc Type UUID
10
pub const INVALID_UUID: uuid::Uuid = uuid::Uuid::from_bytes([0x00; 16]);
rust/catalyst-types/src/uuid/v4.rs renamed to rust/catalyst-types/src/uuid/uuid_v4.rs
rust/catalyst-types/src/uuid/v7.rs renamed to rust/catalyst-types/src/uuid/uuid_v7.rs
rust/catalyst-types/tests/mod.rs
@@ -2,8 +2,6 @@
//!
//! This is mainly to demonstrate sample usage of the types.
-use catalyst_types;
-
#[allow(dead_code)]
#[test]
fn test_type_usage() {
0 commit comments