jsondb/Cargo.toml

20 lines
524 B
TOML

[package]
name = "jsondb"
version = "0.4.0"
edition = "2021"
authors = ["xenofem <xenofem@xeno.science>"]
license = "MIT"
repository = "https://git.xeno.science/xenofem/jsondb"
description = 'JSON-based """embedded database""" library'
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
[dev-dependencies]
tempfile = "3.3"
time = { version = "0.3", features = ["macros"] }
serde_with = { version = "2", features = ["time_0_3"] }