2018-02-21 02:15:39 -05:00
|
|
|
[package]
|
|
|
|
name = "moonfire-db"
|
2021-06-28 23:30:42 -04:00
|
|
|
version = "0.6.4"
|
2018-02-21 02:15:39 -05:00
|
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
|
|
readme = "../README.md"
|
2018-12-28 13:21:49 -05:00
|
|
|
edition = "2018"
|
2021-02-17 16:28:48 -05:00
|
|
|
license-file = "../../LICENSE.txt"
|
2018-02-21 02:15:39 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
nightly = []
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-12-28 22:53:29 -05:00
|
|
|
base = { package = "moonfire-base", path = "../base" }
|
2020-11-23 03:23:03 -05:00
|
|
|
base64 = "0.13.0"
|
|
|
|
blake3 = "0.3.7"
|
2020-03-20 00:35:42 -04:00
|
|
|
byteorder = "1.0"
|
2020-11-23 03:23:03 -05:00
|
|
|
cstr = "0.2.5"
|
2018-02-21 02:15:39 -05:00
|
|
|
failure = "0.1.1"
|
|
|
|
fnv = "1.0"
|
2021-06-04 22:17:32 -04:00
|
|
|
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"
|
2018-02-21 02:15:39 -05:00
|
|
|
lazy_static = "1.0"
|
|
|
|
libc = "0.2"
|
2021-06-09 17:36:14 -04:00
|
|
|
libpasta = "0.1.2"
|
2018-03-04 15:24:24 -05:00
|
|
|
log = "0.4"
|
2018-02-21 02:15:39 -05:00
|
|
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
2021-07-09 18:01:15 -04:00
|
|
|
nix = "0.22.0"
|
2020-04-18 18:44:35 -04:00
|
|
|
odds = { version = "0.4.0", features = ["std-vec"] }
|
2020-11-24 01:46:05 -05:00
|
|
|
parking_lot = { version = "0.11.1", features = [] }
|
2021-04-28 01:51:30 -04:00
|
|
|
pretty-hex = "0.2.1"
|
2021-05-17 15:17:18 -04:00
|
|
|
prettydiff = { git = "https://github.com/scottlamb/prettydiff", branch = "pr-update-deps" }
|
2019-06-19 18:17:50 -04:00
|
|
|
protobuf = { git = "https://github.com/stepancheg/rust-protobuf" }
|
2020-11-24 00:47:02 -05:00
|
|
|
ring = "0.16.2"
|
2021-05-17 13:50:12 -04:00
|
|
|
rusqlite = "0.25.3"
|
2020-01-09 23:06:30 -05:00
|
|
|
smallvec = "1.0"
|
2021-05-17 16:08:01 -04:00
|
|
|
tempfile = "3.2.0"
|
2018-02-21 02:15:39 -05:00
|
|
|
time = "0.1"
|
2021-06-04 22:17:32 -04:00
|
|
|
tokio = { version = "1.0", features = ["macros", "parking_lot", "rt-multi-thread", "sync"] }
|
2020-01-09 23:06:30 -05:00
|
|
|
uuid = { version = "0.8", features = ["std", "v4"] }
|
2021-01-27 15:11:36 -05:00
|
|
|
itertools = "0.10.0"
|
2019-06-19 18:17:50 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
protobuf-codegen-pure = { git = "https://github.com/stepancheg/rust-protobuf" }
|