Skip to content

Commit

Permalink
Remove unnecessary version constraints from demos
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schievink committed Jul 12, 2020
1 parent 4843986 commit 6b37257
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion examples/gpiote-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
cortex-m = "0.6.2"
cortex-m-rtic = "0.5.3"
rtt-target = {version = "0.2.0", features = ["cortex-m"] }
nrf52840-hal = { version = "0.10", features = ["rt"], path = "../../nrf52840-hal" }
nrf52840-hal = { features = ["rt"], path = "../../nrf52840-hal" }

[dependencies.embedded-hal]
version = "0.2.3"
Expand Down
4 changes: 0 additions & 4 deletions examples/rtfm-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,18 @@ panic-semihosting = "0.5.1"
cortex-m-semihosting = "0.3.3"

[dependencies.nrf51-hal]
version = "0.10.0"
path = "../../nrf51-hal"
optional = true

[dependencies.nrf52810-hal]
version = "0.10.0"
path = "../../nrf52810-hal"
optional = true

[dependencies.nrf52832-hal]
version = "0.10.0"
path = "../../nrf52832-hal"
optional = true

[dependencies.nrf52840-hal]
version = "0.10.0"
path = "../../nrf52840-hal"
optional = true

Expand Down
1 change: 0 additions & 1 deletion examples/spi-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ features = ["unproven"]
version = "0.2"

[dependencies.nrf52832-hal]
version = "0.10.0"
path = "../../nrf52832-hal"
optional = true

Expand Down
2 changes: 0 additions & 2 deletions examples/twi-ssd1306/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ features = ["unproven"]
version = "0.2"

[dependencies.nrf52832-hal]
version = "0.10.0"
path = "../../nrf52832-hal"
optional = true

[dependencies.nrf52840-hal]
version = "0.10.0"
path = "../../nrf52840-hal"
optional = true

Expand Down

0 comments on commit 6b37257

Please sign in to comment.