|
@@ -5,7 +5,6 @@ dependencies = [
|
|
|
"bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"clippy 0.0.78 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
- "dns-sd 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"eventual 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
@@ -17,6 +16,7 @@ dependencies = [
|
|
|
"linear-map 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"lmdb-rs 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "mdns 0.1.0 (git+http://github.com/plietar/rust-mdns)",
|
|
|
"num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
"portaudio 0.2.0 (git+https://github.com/mvdnes/portaudio-rs)",
|
|
@@ -73,6 +73,11 @@ name = "bitflags"
|
|
|
version = "0.3.3"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "bitflags"
|
|
|
+version = "0.4.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "bitflags"
|
|
|
version = "0.5.0"
|
|
@@ -88,6 +93,16 @@ name = "byteorder"
|
|
|
version = "0.5.3"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "bytes"
|
|
|
+version = "0.3.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "cfg-if"
|
|
|
+version = "0.1.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "clippy"
|
|
|
version = "0.0.78"
|
|
@@ -122,12 +137,13 @@ dependencies = [
|
|
|
]
|
|
|
|
|
|
[[package]]
|
|
|
-name = "dns-sd"
|
|
|
-version = "0.1.3"
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+name = "dns-parser"
|
|
|
+version = "0.3.2"
|
|
|
+source = "git+http://github.com/plietar/dns-parser#1dfc065504f8e18390fff988dd45d3072157e3b7"
|
|
|
dependencies = [
|
|
|
- "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
- "pkg-config 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "quick-error 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
]
|
|
|
|
|
|
[[package]]
|
|
@@ -313,6 +329,24 @@ name = "matches"
|
|
|
version = "0.1.2"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "mdns"
|
|
|
+version = "0.1.0"
|
|
|
+source = "git+http://github.com/plietar/rust-mdns#a1bc7a031766c4e321152be4d0acd069a42f887d"
|
|
|
+dependencies = [
|
|
|
+ "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "dns-parser 0.3.2 (git+http://github.com/plietar/dns-parser)",
|
|
|
+ "eventual 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "mio 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "multimap 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "net2 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "nix 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "rotor 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "memchr"
|
|
|
version = "0.1.11"
|
|
@@ -329,6 +363,59 @@ dependencies = [
|
|
|
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "mio"
|
|
|
+version = "0.5.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+dependencies = [
|
|
|
+ "bytes 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "miow 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "net2 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "nix 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "slab 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "miow"
|
|
|
+version = "0.1.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+dependencies = [
|
|
|
+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "net2 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "multimap"
|
|
|
+version = "0.2.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "net2"
|
|
|
+version = "0.2.24"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+dependencies = [
|
|
|
+ "cfg-if 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "nix"
|
|
|
+version = "0.5.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+dependencies = [
|
|
|
+ "bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "nom"
|
|
|
version = "1.2.3"
|
|
@@ -547,6 +634,16 @@ dependencies = [
|
|
|
"quasi_codegen 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "quick-error"
|
|
|
+version = "0.2.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "quick-error"
|
|
|
+version = "1.1.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "quine-mc_cluskey"
|
|
|
version = "0.2.2"
|
|
@@ -577,6 +674,18 @@ name = "regex-syntax"
|
|
|
version = "0.3.3"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "rotor"
|
|
|
+version = "0.6.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+dependencies = [
|
|
|
+ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "mio 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "quick-error 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "rpassword"
|
|
|
version = "0.2.2"
|
|
@@ -691,6 +800,11 @@ dependencies = [
|
|
|
"libc 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "slab"
|
|
|
+version = "0.1.3"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "solicit"
|
|
|
version = "0.4.4"
|
|
@@ -933,6 +1047,11 @@ dependencies = [
|
|
|
"time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "void"
|
|
|
+version = "1.0.2"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "vorbis"
|
|
|
version = "0.0.14"
|
|
@@ -977,3 +1096,12 @@ name = "winapi-build"
|
|
|
version = "0.1.1"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "ws2_32-sys"
|
|
|
+version = "0.2.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+dependencies = [
|
|
|
+ "winapi 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+ "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
+]
|
|
|
+
|