4个版本
0.1.3 | 2019年12月26日 |
---|---|
0.1.2 | 2019年12月21日 |
0.1.1 | 2019年12月15日 |
0.1.0 | 2019年12月14日 |
#176 在 #cargo-toml
13KB
281 代码行
Twinkle
Twinkle的Rust绑定。
用法
Cargo.toml
[dependencies]
twinkle = "0.1"
futures = "0.3"
tokio = { version = "0.2", features = ["full"] }
main.rs
use futures::future::{join};
#[tokio::main]
async fn main(){
let (client, manager) = twinkle::open("127.0.0.1:3000").await.unwrap();
join(manager.run(), your_app(client));
}
async fn your_app(mut c: twinkle::Client) {
c.ping().await;
c.set(b"hoge".to_vec(), b"foo".to_vec()).await;
c.get(b"hoge".to_vec()).await;
c.unset(b"hoge".to_vec()).await;
}
许可证
依赖项
~4.5MB
~69K SLoC