2018-02-21 02:15:39 -05:00
|
|
|
[package]
|
|
|
|
name = "moonfire-db"
|
2021-10-27 17:20:51 -04:00
|
|
|
version = "0.7.1"
|
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"
|
2021-08-31 16:04:26 -04:00
|
|
|
blake3 = "1.0.0"
|
2020-03-20 00:35:42 -04:00
|
|
|
byteorder = "1.0"
|
2020-11-23 03:23:03 -05:00
|
|
|
cstr = "0.2.5"
|
2021-10-27 13:17:41 -04:00
|
|
|
diff = "0.1.12"
|
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"
|
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-09-29 14:44:29 -04:00
|
|
|
nix = "0.23.0"
|
2021-08-12 16:32:01 -04:00
|
|
|
num-rational = { version = "0.4.0", default-features = false, features = ["std"] }
|
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-10-27 00:41:03 -04:00
|
|
|
protobuf = "3.0.0-alpha.1"
|
2020-11-24 00:47:02 -05:00
|
|
|
ring = "0.16.2"
|
2021-10-20 21:09:16 -04:00
|
|
|
rusqlite = "0.26.1"
|
2021-10-27 14:38:56 -04:00
|
|
|
scrypt = "0.8.0"
|
2021-09-01 18:01:42 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-10-27 13:17:41 -04:00
|
|
|
#similar = "2.1.0"
|
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"] }
|
2021-09-10 19:31:03 -04:00
|
|
|
url = { version = "2.1.1", features = ["serde"] }
|
2021-10-26 13:12:19 -04:00
|
|
|
uuid = { version = "0.8", features = ["serde", "std", "v4"] }
|
2021-01-27 15:11:36 -05:00
|
|
|
itertools = "0.10.0"
|
2019-06-19 18:17:50 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-10-27 00:41:03 -04:00
|
|
|
protobuf-codegen-pure = "3.0.0-alpha.1"
|