6 releases
Uses old Rust 2015
0.0.6 | Nov 18, 2018 |
---|---|
0.0.5 | Nov 18, 2018 |
#7 in #dynamo
40 downloads per month
7KB
101 lines
rustamodb
rustamodb
is inspired by pynamodb and is a simple to use library for AWS DynamoDB.
Currently very early stages WIP.
Examples
extern crate rustamodb;
fn main() {
match rustamodb::scan(&"my_dynamodb_table") {
Ok(scan_output) => {
for item in scan_output {
println!("{:?}", item);
}
},
Err(_) => (),
}
}
lib.rs
:
rustamodb
rustamodb
is inspired by pynamodb and is a simple
to use library for AWS DynamoDB.
Examples
fn main() {
match rustamodb::scan(&"my_dynamodb_table") {
Ok(scan_output) => {
for item in scan_output {
println!("{:?}", item);
}
},
Err(_) => (),
}
}
Dependencies
~16–24MB
~384K SLoC