29 lines
578 B
TOML
29 lines
578 B
TOML
|
[package]
|
||
|
name = "moonfire-db"
|
||
|
version = "0.0.1"
|
||
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||
|
readme = "../README.md"
|
||
|
|
||
|
[features]
|
||
|
nightly = []
|
||
|
|
||
|
[lib]
|
||
|
path = "lib.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
failure = "0.1.1"
|
||
|
fnv = "1.0"
|
||
|
lazy_static = "1.0"
|
||
|
libc = "0.2"
|
||
|
log = { version = "0.4", features = ["release_max_level_info"] }
|
||
|
lru-cache = "0.1"
|
||
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
||
|
openssl = "0.10"
|
||
|
parking_lot = { version = "0.5", features = [] }
|
||
|
protobuf = "1.4"
|
||
|
regex = "0.2"
|
||
|
rusqlite = "0.13"
|
||
|
tempdir = "0.3"
|
||
|
time = "0.1"
|
||
|
uuid = { version = "0.6", features = ["std", "v4"] }
|