mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-02-13 06:38:09 -05:00
The immediate motivation is that Cargo.lock referred to a commit version in a PR branch of my nix fork that no longer exists. (I didn't know, but it makes sense, that "git push -f" not only forcibly updates the branch to refer to a new commit but also gets rid of orphaned commits.) Use a moonfire branch that I'll keep stable until I'm ready to move on. I also updated parking_lot and rusqlite to new major versions (nothing in the interface that I care about has changed) and did a full cargo update.
43 lines
1012 B
TOML
43 lines
1012 B
TOML
[package]
|
|
name = "moonfire-db"
|
|
version = "0.0.1"
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
readme = "../README.md"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
nightly = []
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { package = "moonfire-base", path = "../base" }
|
|
base64 = "0.10.0"
|
|
blake2-rfc = "0.2.18"
|
|
cstr = "0.1.7"
|
|
failure = "0.1.1"
|
|
fnv = "1.0"
|
|
lazy_static = "1.0"
|
|
libc = "0.2"
|
|
libpasta = "0.1.0-rc2"
|
|
log = "0.4"
|
|
lru-cache = "0.1"
|
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
|
nix = { git = "https://github.com/scottlamb/nix", branch = "moonfire" }
|
|
odds = { version = "0.3.1", features = ["std-vec"] }
|
|
openssl = "0.10"
|
|
parking_lot = { version = "0.9", features = [] }
|
|
prettydiff = "0.3.1"
|
|
protobuf = { git = "https://github.com/stepancheg/rust-protobuf" }
|
|
regex = "1.0"
|
|
rusqlite = "0.19.0"
|
|
smallvec = "0.6"
|
|
tempdir = "0.3"
|
|
time = "0.1"
|
|
uuid = { version = "0.7", features = ["std", "v4"] }
|
|
itertools = "0.8.0"
|
|
|
|
[build-dependencies]
|
|
protobuf-codegen-pure = { git = "https://github.com/stepancheg/rust-protobuf" }
|