#url-safe #uuid #snowflake #twitter #id #instagram #timeflake

timeflake-rs

Timeflake是一种128位的、近似有序的、URL安全的UUID。受到Twitter的Snowflake、Instagram的ID和Firebase的PushID的启发。

7个版本

0.3.0 2022年10月6日
0.2.4 2022年8月4日
0.2.2 2022年4月18日
0.1.0 2022年4月17日

#385 in HTTP客户端

Download history 483/week @ 2024-03-13 515/week @ 2024-03-20 295/week @ 2024-03-27 419/week @ 2024-04-03 414/week @ 2024-04-10 413/week @ 2024-04-17 465/week @ 2024-04-24 509/week @ 2024-05-01 435/week @ 2024-05-08 499/week @ 2024-05-15 472/week @ 2024-05-22 486/week @ 2024-05-29 494/week @ 2024-06-05 616/week @ 2024-06-12 495/week @ 2024-06-19 520/week @ 2024-06-26

2,232 每月下载
用于 timeflaketiny-rs

MIT 许可证

7KB
113

Timeflake-rs

Build Status crates.io License

Timeflake是一种128位的、近似有序的、URL安全的UUID。受到Twitter的Snowflake、Instagram的ID和Firebase的PushID的启发。

纯Rust编写的https://github.com/anthonynsimon/timeflake的移植

示例代码

use Timeflake;

fn main() {
    let time = SystemTime::now().duration_since(UNIX_EPOCH).unwrap();
    println!("{}", Timeflake::random().unwrap());
    println!("{}", Timeflake::from_values(time, Some(0)).unwrap());
    println!("{}", Timeflake::from_values(time, None).unwrap());
}

依赖项

~575KB