moonfire-nvr/server/db/Cargo.toml

53 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "moonfire-db"
version = "0.7.5"
authors = ["Scott Lamb <slamb@slamb.org>"]
readme = "../README.md"
edition = "2018"
license-file = "../../LICENSE.txt"
[features]
nightly = []
[lib]
path = "lib.rs"
[dependencies]
base = { package = "moonfire-base", path = "../base" }
base64 = "0.13.0"
blake3 = "1.0.0"
byteorder = "1.0"
cstr = "0.2.5"
diff = "0.1.12"
failure = "0.1.1"
fnv = "1.0"
futures = "0.3"
2021-06-09 17:36:14 -04:00
h264-reader = "0.5.0"
2021-05-17 14:05:54 -04:00
hashlink = "0.7.0"
lazy_static = "1.0"
libc = "0.2"
log = "0.4"
mylog = { git = "https://github.com/scottlamb/mylog" }
2021-09-29 14:44:29 -04:00
nix = "0.23.0"
num-rational = { version = "0.4.0", default-features = false, features = ["std"] }
odds = { version = "0.4.0", features = ["std-vec"] }
parking_lot = "0.12.0"
2022-08-09 11:02:07 -04:00
pretty-hex = "0.3.0"
2022-05-02 14:22:14 -04:00
protobuf = "3.0"
ring = "0.16.2"
2022-03-08 14:37:45 -05:00
rusqlite = "0.27.0"
2022-03-08 14:40:25 -05:00
scrypt = "0.9.0"
2021-09-01 18:01:42 -04:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
#similar = "2.1.0"
smallvec = "1.0"
2021-05-17 16:08:01 -04:00
tempfile = "3.2.0"
time = "0.1"
tokio = { version = "1.0", features = ["macros", "parking_lot", "rt-multi-thread", "sync"] }
url = { version = "2.1.1", features = ["serde"] }
uuid = { version = "0.8", features = ["serde", "std", "v4"] }
2021-01-27 15:11:36 -05:00
itertools = "0.10.0"
[build-dependencies]
2022-05-02 14:22:14 -04:00
protobuf-codegen = "3.0"