| Crates.io | dict_client |
| lib.rs | dict_client |
| version | 0.1.0 |
| created_at | 2025-03-07 17:20:08.045165+00 |
| updated_at | 2025-03-07 17:20:08.045165+00 |
| description | A simple dictionary server protocol client implementation |
| homepage | |
| repository | https://github.com/bigorangeqwq/dict-client |
| max_upload_size | |
| id | 1583372 |
| size | 14,895 |
A simple Dictionary Server Protocol client rust implementation
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);
}