Skip to content

Commit

Permalink
Merge pull request #407 from JohanLorenzo/add-openzwave-adapter
Browse files Browse the repository at this point in the history
Add openzwave-adapter
  • Loading branch information
fabricedesre committed Apr 21, 2016
2 parents be72697 + 5d60b04 commit 6bde3e6
Show file tree
Hide file tree
Showing 5 changed files with 604 additions and 8 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@ default = ["authentication"]
authentication = []

[dependencies]
foxbox_thinkerbell = { path = "components/thinkerbell/" }
openzwave-adapter = { path = "components/openzwave-adapter/" }
foxbox_taxonomy = { git = "https://github.com/fxbox/taxonomy.git" }
foxbox_users = { git = "https://github.com/fxbox/users.git", rev = "1033e08" }
multicast_dns = { git = "https://github.com/fxbox/multicast-dns.git", rev = "a6e4bcc" }
iron-cors = { git = "https://github.com/fxbox/iron-cors.git", rev = "96ede73" }

chrono = "0.2.19"
clippy = "0.0.63"
docopt = "0.6.78"
docopt_macros = "0.6.80"
env_logger = "0.3.2"
foxbox_taxonomy = { git = "https://github.com/fxbox/taxonomy.git" }
foxbox_thinkerbell = { path = "components/thinkerbell/" }
foxbox_users = { git = "https://github.com/fxbox/users.git", rev = "1033e08" }
get_if_addrs = "0.3.1"
hyper = "0.7.2"
multicast_dns = { git = "https://github.com/fxbox/multicast-dns.git", rev = "a6e4bcc" }
iron-cors = { git = "https://github.com/fxbox/iron-cors.git", rev = "96ede73" }
mktemp = "0.1.2"
libc = "0.2.7"
log = "0.3"
Expand All @@ -35,7 +37,6 @@ mount = "0.0.10"
nix = { git = "https://github.com/nix-rust/nix.git", rev = "138080" } # Until 0.5.1 is released
openssl = "0.7.6"
openssl-sys = "0.7.6"
openzwave-adapter = { git = "https://github.com/fxbox/openzwave-adapter" }
rand = "0.3"
router = "0.1.0"
rust-crypto = "0.2.34"
Expand Down
4 changes: 4 additions & 0 deletions components/openzwave-adapter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target
Cargo.lock
.*.sw*
.cargo
10 changes: 10 additions & 0 deletions components/openzwave-adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "openzwave-adapter"
version = "0.1.0"
authors = ["Julien Wajsberg <felash@gmail.com>"]

[dependencies]
openzwave-stateful = { git = "https://github.com/fxbox/openzwave-stateful-rust" }
foxbox_taxonomy = { git = "https://github.com/fxbox/taxonomy.git" }
transformable_channels = "^0.1"
log = "^0.3"
Loading

0 comments on commit 6bde3e6

Please sign in to comment.