From c546ce40ed492dac7343eb8e61746000f18b0e61 Mon Sep 17 00:00:00 2001 From: Aleksandr Date: Sat, 18 Oct 2025 20:00:55 +0300 Subject: [PATCH] make sign up completion token urlsafe --- core/src/types/user.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/types/user.rs b/core/src/types/user.rs index a9baa5b..d014453 100644 --- a/core/src/types/user.rs +++ b/core/src/types/user.rs @@ -114,7 +114,7 @@ impl NicknameStr { } #[str(fixed(error = ParseError))] -pub struct SignUpCompletionToken(Seq<16, ascii::Printable>); +pub struct SignUpCompletionToken(Seq<16, ascii::UrlSafe>); // TODO: impl this from macro. impl rand::distr::Distribution for rand::distr::StandardUniform {