tikv / website

Website for tikv.org
19 stars 62 forks source link

rust-client needs to be updated #108

Open zyctree opened 4 years ago

zyctree commented 4 years ago

the async/await syntax needs to be updated, instead

req.wait()?;

now it is like

req.await?;

https://tikv.org/docs/3.0/reference/clients/rust/ https://github.com/tikv/client-rust/blob/master/examples/raw.rs

Hoverbear commented 4 years ago

Great catch, thanks!