#emoji #unicode #random

random-unicode-emoji

一个简单的Rust库,返回随机的Unicode表情符号。 ❤️

3 个版本 (稳定)

1.0.1 2023年3月24日
0.1.0 2023年3月24日

#490GUI

每月32次下载

MIT 许可证

460KB

random-unicode-emoji

crates Unicode downloads stars forks repo size

一个简单的Rust库,返回随机的Unicode表情符号。 ❤️

喜欢这个仓库?在GitHub上给它一个

安装

安装crate

cargo add random-unicode-emoji

用法

使用crate

// Use the Library
use random_unicode_emoji::random_emoji;

// Use the Function
println!("{}", random_emoji(1, "latest")[0]);
--> 🍭

// Change the Count
println!("{:?}", random_emoji(3, "latest"));
--> ["🏠", "🥑", "👠"]

// Change the Version
println!("{}", random_emoji(1, "15.0")[0]);
--> 🐒

参数

  • count: usize (整数)
  • version: &str (字符串)

返回类型

  • Vec<String> (字符串向量)

更新

将crate更新到最新版本

cargo update -p random-unicode-emoji

Unicode

使用Unicode.org的Unicode标准表情符号 Unicode.org

支持的Unicode版本

4.0, 5.0, 11.0, 12.0, 12.1, 13.0, 13.1, 14.0, 15.0 (最新)

默认使用最新版本。

语言

这是Rust版本。还有JavaScript版本和Python版本。

维护者

Nic Jones, (NicPWNs)

依赖