Update bootloader with the fixed upstream

This commit is contained in:
Guillaume DIDIER 2019-10-21 13:14:50 +02:00
parent e010900715
commit 898da64647
2 changed files with 7 additions and 5 deletions

6
Cargo.lock generated
View File

@ -25,7 +25,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "bootloader"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"bit_field 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -39,7 +40,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "dendrobates_tinctoreus_azureus"
version = "0.1.0"
dependencies = [
"bootloader 0.8.1",
"bootloader 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
"polling_serial 0.1.0",
"vga_buffer 0.1.0",
"volatile 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
@ -109,6 +110,7 @@ dependencies = [
"checksum bit_field 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a165d606cf084741d4ac3a28fb6e9b1eb0bd31f6cd999098cfddb0b2ab381dc0"
"checksum bit_field 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed8765909f9009617974ab6b7d332625b320b33c326b1e9321382ef1999b5d56"
"checksum bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a606a02debe2813760609f57a64a2ffd27d9fdf5b2f133eaca0b248dd92cdd2"
"checksum bootloader 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abfbe6cdea6367860818facc8e4a184f003cb83d7d004acaaf57baebf1949da0"
"checksum cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427"
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"

View File

@ -29,11 +29,11 @@ polling_serial = { path = "polling_serial" }
volatile = "0.2.6"
[dependencies.bootloader]
version = "^0.8.1"
version = "^0.8.2"
features = ["sse"]
[patch.crates-io]
bootloader = { path = "../bootloader" }
#[patch.crates-io]
#bootloader = { path = "../bootloader" }
[profile.dev]
opt-level = 0