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