moonfire-nvr/db/Cargo.toml

37 lines
750 B
TOML
Raw Normal View History

[package]
name = "moonfire-db"
version = "0.0.1"
authors = ["Scott Lamb <slamb@slamb.org>"]
readme = "../README.md"
edition = "2018"
[features]
nightly = []
[lib]
path = "lib.rs"
[dependencies]
base = { package = "moonfire-base", path = "../base" }
2018-12-28 11:13:03 -05:00
base64 = "0.10.0"
blake2-rfc = "0.2.18"
failure = "0.1.1"
fnv = "1.0"
lazy_static = "1.0"
libc = "0.2"
libpasta = "0.1.0-rc2"
log = "0.4"
lru-cache = "0.1"
mylog = { git = "https://github.com/scottlamb/mylog" }
odds = { version = "0.3.1", features = ["std-vec"] }
openssl = "0.10"
2018-12-01 18:20:19 -05:00
parking_lot = { version = "0.7", features = [] }
2018-08-25 01:06:14 -04:00
protobuf = "2.0"
regex = "1.0"
rusqlite = "0.18"
2019-01-04 14:56:15 -05:00
smallvec = "0.6"
tempdir = "0.3"
time = "0.1"
2018-12-01 18:20:19 -05:00
uuid = { version = "0.7", features = ["std", "v4"] }
2019-01-04 14:56:15 -05:00
itertools = "0.8.0"