mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-01-13 07:53:22 -05:00
fix broken Cargo.toml
I'd temporarily pointed this to a local path for development and didn't notice it was still in place when committing. Back to the git path that works for everyone.
This commit is contained in:
parent
6b369a4cf0
commit
92962b9ee6
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -8,8 +8,8 @@ dependencies = [
|
||||
"fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures-cpupool 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"http-entity 0.0.1",
|
||||
"http-file 0.0.1",
|
||||
"http-entity 0.0.1 (git+https://github.com/scottlamb/http-entity)",
|
||||
"http-file 0.0.1 (git+https://github.com/scottlamb/http-entity)",
|
||||
"hyper 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"lazy_static 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -223,6 +223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
[[package]]
|
||||
name = "http-entity"
|
||||
version = "0.0.1"
|
||||
source = "git+https://github.com/scottlamb/http-entity#9f870224c3c91c072446f2179816afc095aa8943"
|
||||
dependencies = [
|
||||
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"hyper 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -234,10 +235,11 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "http-file"
|
||||
version = "0.0.1"
|
||||
source = "git+https://github.com/scottlamb/http-entity#9f870224c3c91c072446f2179816afc095aa8943"
|
||||
dependencies = [
|
||||
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"futures-cpupool 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"http-entity 0.0.1",
|
||||
"http-entity 0.0.1 (git+https://github.com/scottlamb/http-entity)",
|
||||
"hyper 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"libc 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
@ -1162,6 +1164,8 @@ dependencies = [
|
||||
"checksum futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "05a23db7bd162d4e8265968602930c476f688f0c180b44bdaf55e0cb2c687558"
|
||||
"checksum futures-cpupool 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "77d49e7de8b91b20d6fda43eea906637eff18b96702eb6b2872df8bfab1ad2b5"
|
||||
"checksum gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb"
|
||||
"checksum http-entity 0.0.1 (git+https://github.com/scottlamb/http-entity)" = "<none>"
|
||||
"checksum http-file 0.0.1 (git+https://github.com/scottlamb/http-entity)" = "<none>"
|
||||
"checksum httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af2f2dd97457e8fb1ae7c5a420db346af389926e36f43768b96f101546b04a07"
|
||||
"checksum hyper 0.11.2 (git+https://github.com/scottlamb/hyper?branch=moonfire-on-0.11.x)" = "<none>"
|
||||
"checksum hyper 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "641abc3e3fcf0de41165595f801376e01106bca1fd876dda937730e477ca004c"
|
||||
|
@ -19,10 +19,8 @@ docopt = "0.8"
|
||||
futures = "0.1"
|
||||
futures-cpupool = "0.1"
|
||||
fnv = "1.0"
|
||||
http-entity = { path = "../http-entity" }
|
||||
http-file = { path = "../http-entity/http-file" }
|
||||
#http-entity = { git = "https://github.com/scottlamb/http-entity" }
|
||||
#http-file = { git = "https://github.com/scottlamb/http-entity" }
|
||||
http-entity = { git = "https://github.com/scottlamb/http-entity" }
|
||||
http-file = { git = "https://github.com/scottlamb/http-entity" }
|
||||
hyper = "0.11.2"
|
||||
lazy_static = "0.2"
|
||||
libc = "0.2"
|
||||
|
Loading…
Reference in New Issue
Block a user