#dictionary #client #protocols #server #command

dict_client

A simple dictionary server protocol client implementation

1 unstable release

new 0.1.0 Mar 7, 2025

#62 in #dictionary

Download history 54/week @ 2025-03-02

54 downloads per month

MIT license

15KB
340 lines

DictClient

A simple Dictionary Server Protocol client rust implementation

Exmaples

use dict_client::Command;
use dict_client::DictClient;

fn main() {
    let mut connect = DictClient::connect("dict.catflap.org:2628");
    let resp = connect.command(Command::define("xdict", "test"));
    println!("{:?}", resp);
}   

Future

  • Support for async traits.

No runtime deps