dynomite 0.10.0

Provides set of high-level productive DynamoDB interfaces
Documentation
1
2
3
4
5
6
7
8
9
//! Provides an error message testing framework using https://github.com/dtolnay/trybuild
//! See `dynomite/trybuild-tests/readme.md` for instructions on how to add more tests.

#[test]
fn try_build_tests() {
    let t = trybuild::TestCases::new();
    t.compile_fail("trybuild-tests/fail/*.rs");
    t.pass("trybuild-tests/pass/*.rs");
}