1个不稳定版本

0.1.0-alpha2024年7月5日

#3 in #centralized

Download history 62/week @ 2024-06-30 19/week @ 2024-07-07 2/week @ 2024-07-14 53/week @ 2024-07-28 1/week @ 2024-08-04

56 每月下载量

MIT 许可证

56KB
1.5K SLoC

DLCNS

DarkLight集中命名服务(库)用于获取与DarkLight服务器ID和端口关联的易读名称。此库可以获取名称的ID或从ID获取名称。请参阅examples/中的用法。

use dlcns::get::CNSGet;

fn main() {
    let mut cnsget = CNSGet::new();

    let id = cnsget.get_owner_name(String::from("test"));

    if id.is_some() {
        println!("{:?}", id.unwrap());
    } else {
        println!("Not found");
    }
}

依赖项

~3.5–5MB
~154K SLoC