1 unstable release
new 0.1.0 | Mar 7, 2025 |
---|
#62 in #dictionary
54 downloads per month
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.