2018-02-20 23:15:39 -08:00
|
|
|
[package]
|
|
|
|
name = "moonfire-db"
|
2021-02-16 10:22:35 -08:00
|
|
|
version = "0.6.1"
|
2018-02-20 23:15:39 -08:00
|
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
|
|
readme = "../README.md"
|
2018-12-28 12:21:49 -06:00
|
|
|
edition = "2018"
|
2021-02-17 13:28:48 -08:00
|
|
|
license-file = "../../LICENSE.txt"
|
2018-02-20 23:15:39 -08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
nightly = []
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-12-28 21:53:29 -06:00
|
|
|
base = { package = "moonfire-base", path = "../base" }
|
2020-11-23 00:23:03 -08:00
|
|
|
base64 = "0.13.0"
|
|
|
|
blake3 = "0.3.7"
|
2020-03-19 21:35:42 -07:00
|
|
|
byteorder = "1.0"
|
2020-11-23 00:23:03 -08:00
|
|
|
cstr = "0.2.5"
|
2018-02-20 23:15:39 -08:00
|
|
|
failure = "0.1.1"
|
|
|
|
fnv = "1.0"
|
2020-03-19 21:35:42 -07:00
|
|
|
h264-reader = { git = "https://github.com/dholroyd/h264-reader" }
|
2020-11-22 17:37:55 -08:00
|
|
|
hashlink = "0.6.0"
|
2018-02-20 23:15:39 -08:00
|
|
|
lazy_static = "1.0"
|
|
|
|
libc = "0.2"
|
2020-11-23 21:47:02 -08:00
|
|
|
libpasta = { git = "https://github.com/scottlamb/libpasta", branch = "pr-deps" }
|
2018-03-04 12:24:24 -08:00
|
|
|
log = "0.4"
|
2018-02-20 23:15:39 -08:00
|
|
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
2020-11-23 00:23:03 -08:00
|
|
|
nix = "0.19.0"
|
2020-04-18 15:44:35 -07:00
|
|
|
odds = { version = "0.4.0", features = ["std-vec"] }
|
2020-11-23 22:46:05 -08:00
|
|
|
parking_lot = { version = "0.11.1", features = [] }
|
2021-01-27 12:11:36 -08:00
|
|
|
prettydiff = "0.4.0"
|
2019-06-19 15:17:50 -07:00
|
|
|
protobuf = { git = "https://github.com/stepancheg/rust-protobuf" }
|
2020-11-23 21:47:02 -08:00
|
|
|
ring = "0.16.2"
|
2020-11-22 17:37:55 -08:00
|
|
|
rusqlite = "0.24.1"
|
2020-01-09 20:06:30 -08:00
|
|
|
smallvec = "1.0"
|
2018-02-20 23:15:39 -08:00
|
|
|
tempdir = "0.3"
|
|
|
|
time = "0.1"
|
2020-01-09 20:06:30 -08:00
|
|
|
uuid = { version = "0.8", features = ["std", "v4"] }
|
2021-01-27 12:11:36 -08:00
|
|
|
itertools = "0.10.0"
|
2019-06-19 15:17:50 -07:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
protobuf-codegen-pure = { git = "https://github.com/stepancheg/rust-protobuf" }
|