#name #human-readable #dark-light #server #id #centralized #port

dlcns

A library for interacting with the DarkLight Centralized Name Server

1 unstable release

0.1.0-alpha Jul 5, 2024

#6 in #centralized

MIT license

56KB
1.5K SLoC

DLCNS

DarkLight Centeralized Name Serice (library) is used for getting human-readable names that are asociated with the Id and port of a DarkLight server. This library can get the Id of a name or a name from an Id. See examples/ for usages.

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");
    }
}

Dependencies

~3.5–5MB
~153K SLoC