dsync 0.0.12

Generate rust structs & query functions from diesel schema files.
Documentation
1
2
3
4
5
6
7
8
9
10
diesel::table! {
    todos (id) {
        id -> Int4,
        unsigned -> Unsigned<Integer>,
        text -> Text,
        completed -> Bool,
        created_at -> Timestamptz,
        updated_at -> Timestamptz,
    }
}