microrm 0.3.12

Lightweight ORM using sqlite as a backend.
Documentation
[package]
name = "microrm"
version = "0.3.12"
edition = "2021"
license = "BSD-4-Clause"
authors = ["Kestrel <kestrel@flying-kestrel.ca>"]
repository = "https://git.flying-kestrel.ca/kestrel/microrm"
description = "Lightweight ORM using sqlite as a backend."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
base64 = "0.13"
sha2 = "0.10"
sqlite = "0.26"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = { version = "0.11.6" }
serde_json = { version = "1.0" }
lazy_static = { version = "1.4.0" }

microrm-macros = { path = "../microrm-macros", version = "0.2.6" }
log = "0.4.17"

[dev-dependencies]
criterion = "0.3"
rand = "0.8.5"
stats_alloc = "0.1.10"
async-std = "1.11"

[[bench]]
name = "simple_in_memory"
harness = false