2018-02-21 02:15:39 -05:00
|
|
|
[package]
|
|
|
|
name = "moonfire-db"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
|
|
readme = "../README.md"
|
2018-12-28 13:21:49 -05:00
|
|
|
edition = "2018"
|
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-01-09 23:06:30 -05:00
|
|
|
base64 = "0.11.0"
|
2018-11-02 02:25:06 -04:00
|
|
|
blake2-rfc = "0.2.18"
|
2019-07-04 17:51:38 -04:00
|
|
|
cstr = "0.1.7"
|
2018-02-21 02:15:39 -05:00
|
|
|
failure = "0.1.1"
|
|
|
|
fnv = "1.0"
|
|
|
|
lazy_static = "1.0"
|
|
|
|
libc = "0.2"
|
2018-11-26 00:31:50 -05:00
|
|
|
libpasta = "0.1.0-rc2"
|
2018-03-04 15:24:24 -05:00
|
|
|
log = "0.4"
|
2018-02-21 02:15:39 -05:00
|
|
|
lru-cache = "0.1"
|
|
|
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
2019-12-30 08:46:53 -05:00
|
|
|
nix = "0.16.1"
|
2019-01-21 18:58:52 -05:00
|
|
|
odds = { version = "0.3.1", features = ["std-vec"] }
|
2018-02-21 02:15:39 -05:00
|
|
|
openssl = "0.10"
|
2019-07-17 17:32:09 -04:00
|
|
|
parking_lot = { version = "0.9", features = [] }
|
2019-07-11 11:07:40 -04:00
|
|
|
prettydiff = "0.3.1"
|
2019-06-19 18:17:50 -04:00
|
|
|
protobuf = { git = "https://github.com/stepancheg/rust-protobuf" }
|
2020-01-09 23:06:30 -05:00
|
|
|
rusqlite = "0.21.0"
|
|
|
|
smallvec = "1.0"
|
2018-02-21 02:15:39 -05:00
|
|
|
tempdir = "0.3"
|
|
|
|
time = "0.1"
|
2020-01-09 23:06:30 -05:00
|
|
|
uuid = { version = "0.8", features = ["std", "v4"] }
|
2019-01-04 14:56:15 -05:00
|
|
|
itertools = "0.8.0"
|
2019-06-19 18:17:50 -04:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
protobuf-codegen-pure = { git = "https://github.com/stepancheg/rust-protobuf" }
|