Skip to content

christian-blades-cb/proquint-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

proquint-rs Build Status Latest Version Docs Average time to resolve an issue Percentage of issues still open

Proquints are readable, pronouncable representations of identifiers. This is a Rust library for converting between them.

Proquints

Read more about proquints: https://arxiv.org/html/0901.4016

Ex. the ip address 127.0.0.1 is lusab-babad in proquint form.

Usage

extern crate proquint;

use proquint::Quintable;
use std::net::Ipv4Addr;

let home = Ipv4Addr::new(127, 0, 0, 1);
assert_eq!(home.to_quint(), "lusab-babad");

assert_eq!(u32::from_quint("rotab-vinat").unwrap(), 3141592653u32);

About

Rust library for conversion to/from proquints

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages