a small relational database with user-editable schema for manual data entry
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
yopa/yopa/Cargo.toml

29 lines
644 B

[package]
name = "yopa"
description = "Your Own Private Ass"
version = "0.1.0"
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
edition = "2018"
license = "LGPL"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.13"
uuid = { version = "0.8", features = ["serde", "v4"], optional = true }
serde_json = "1.0.61"
serde = { version = "1.0.120", features = ["derive"] }
parking_lot = "0.11.1"
anyhow = "1.0.38"
thiserror = "1.0.23"
itertools = "0.10.0"
#lazy_static = "1.4.0"
bincode = "1.3.1"
atomic = "0.5.0"
rand = "0.8.3"
[features]
default = []
uuid-ids = ["uuid"]