obj-db 1.0.2

Embedded document database. Stable file format, full ACID, single-file portability.
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, obj::Document)]
#[obj(collection = "")]
struct EmptyCollection {
    x: u32,
}

fn main() {}