jsondb/Cargo.toml

20 lines
524 B
TOML
Raw Permalink Normal View History

2022-08-15 15:42:47 -04:00
[package]
name = "jsondb"
version = "0.4.0"
2022-08-15 15:42:47 -04:00
edition = "2021"
authors = ["xenofem <xenofem@xeno.science>"]
2022-08-16 01:38:21 -04:00
license = "MIT"
2022-08-17 03:21:39 -04:00
repository = "https://git.xeno.science/xenofem/jsondb"
description = 'JSON-based """embedded database""" library'
2022-08-15 15:42:47 -04:00
[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"] }