"README.md" did not exist on "8008fbdec6a1712ecceab1df97ec2f6e28b93e10"
Forked from
The Tor Project / Core / Arti
Source project has a limited visibility.
-
Nick Mathewson authored
Relay nicknames are always between 1 and 19 characters long, and they're always ASCII: That means that storing them in a [u8;19] will always be possible, and always use less resources than storing them in a String. Fortunately, the tinystr crate already helps us with this kind of thing.
Nick Mathewson authoredRelay nicknames are always between 1 and 19 characters long, and they're always ASCII: That means that storing them in a [u8;19] will always be possible, and always use less resources than storing them in a String. Fortunately, the tinystr crate already helps us with this kind of thing.