Encoding module

main
Pantonshire 3 years ago
parent d1ca94954b
commit eff2fab679

@ -0,0 +1,2 @@
pub mod hex;
pub mod rfc3986;

@ -5,6 +5,6 @@ extern crate alloc;
pub mod convert;
pub mod either;
pub mod hex;
pub mod encoding;
pub mod strings;
pub mod uuid;

@ -1,6 +1,6 @@
use core::{fmt, str};
use crate::{hex, strings::FixedString};
use crate::{encoding::hex, strings::FixedString};
// TODO: make conformity to RFC 4122 an invariant of this type (which means it cannot be created
// safely from an arbitrary [u8; 16]).

Loading…
Cancel
Save