rs_aio_db 0.8.5

All in one (aka Aio) database with async support. Based on sqlite, bevy_reflect and tokio, includes a dead simple API to be used (no SQL needed just pure Rust). Comes with automigration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bevy_reflect::PartialReflect;

#[derive(Default, Clone, Debug)]
pub struct Schema {
     pub field_name: String,
     pub field_type: String
}

#[derive(Debug)]
pub struct GenericValue<'a> {
     pub field_name: String,
     pub field_value: &'a dyn PartialReflect,
     pub field_type: String
}