Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

Commit

Permalink
Update deps and fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckeogh committed Jun 11, 2019
1 parent 9ab3da6 commit 9bba686
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions rubble-demo/Cargo.toml
Expand Up @@ -18,12 +18,13 @@ cortex-m-semihosting = "0.3.3"
cortex-m-rtfm = "0.4.3"
cortex-m-rt = "0.6.8"
nrf52810-hal = { version = "0.8.1", features = ["rt"] }
byteorder = { version = "1.3.1", default-features = false }
byteorder = { version = "1.3.2", default-features = false }
panic-semihosting = "0.5.2"
bbqueue = { git = "https://github.com/chocol4te/bbqueue" }
bbqueue = { git = "https://github.com/chocol4te/bbqueue", rev = "a4eec6f" }

[dependencies.log]
version = "0.4.6"
git = "https://github.com/rust-lang-nursery/log"
rev = "8dbb2f51"
features = ["release_max_level_warn"]
optional = true

Expand Down
2 changes: 1 addition & 1 deletion rubble-nrf51/src/timer.rs
Expand Up @@ -2,7 +2,7 @@

use {
core::mem,
nrf51_hal::nrf51::{TIMER0},
nrf51_hal::nrf51::TIMER0,
rubble::{
link::NextUpdate,
time::{Instant, Timer},
Expand Down
7 changes: 4 additions & 3 deletions rubble/Cargo.toml
Expand Up @@ -11,15 +11,16 @@ version = "0.0.3"
edition = "2018"

[dependencies]
byteorder = { version = "1.3.1", default-features = false }
bitflags = "1.0.4"
byteorder = { version = "1.3.2", default-features = false }
bitflags = "1.1.0"
uuid = { version = "0.7.4", default-features = false }
bbqueue = { git = "https://github.com/chocol4te/bbqueue" }
bbqueue = { git = "https://github.com/chocol4te/bbqueue", rev = "a4eec6f" }

# If the `log` feature is enabled, the `log` crate's macros will be called at various points to dump
# packets, state, and events. By default, it is disabled.
[dependencies.log]
git = "https://github.com/rust-lang-nursery/log"
rev = "8dbb2f51"
optional = true

[features]
Expand Down

0 comments on commit 9bba686

Please sign in to comment.