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 f0fa59b commit 5852147Copy full SHA for 5852147
rust/catalyst-types/src/uuid/mod.rs
@@ -1,13 +1,11 @@
1
//! `UUID` types.
2
3
-mod uuid_v4;
4
-mod uuid_v7;
+mod v4;
+mod v7;
5
6
use minicbor::data::Tag;
7
-#[allow(clippy::module_name_repetitions)]
8
-pub use uuid_v4::UuidV4;
9
10
-pub use uuid_v7::UuidV7;
+pub use v4::UuidV4;
+pub use v7::UuidV7;
11
12
/// Invalid Doc Type UUID
13
pub const INVALID_UUID: uuid::Uuid = uuid::Uuid::from_bytes([0x00; 16]);
rust/catalyst-types/src/uuid/uuid_v4.rs renamed to rust/catalyst-types/src/uuid/v4.rs
rust/catalyst-types/src/uuid/uuid_v7.rs renamed to rust/catalyst-types/src/uuid/v7.rs
0 commit comments