An unofficial database adapater for Replit Database for Rust!
sh
cargo add replit_db
```rust use replit_db::{self, Synchronous};
fn main() {
let config = replitdb::Config::new().unwrap();
let db = replitdb::Database::new(config);
let res = db.set("testings", "30");
match res {
Ok(()) => println!("Successful!"),
Err(e) => println!("{}",e.tostring())
}
println!(db.get("testings").unwrap());
db.delete("testings").unwrap();
for var in db.list(replitdb::NONE).unwrap() {
println!(var);
} // you could list all variable by prefix with Some("prefix")
}.
```
All documentations will be in the comment and intellisense. (I hosted my own documentation since docs.rs is slow)
Also for asynchronous version please use replit_db::Asynchronous
trait.