Bump elf2tab to 0.6.0

This commit is contained in:
Jean-Michel Picod
2020-09-01 17:23:26 +02:00
parent 74c773d29e
commit 728401b00f
3 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ with_ctap1 = ["crypto/with_ctap1"]
with_ctap2_1 = []
[dev-dependencies]
elf2tab = "0.4.0"
elf2tab = "0.6.0"
enum-iterator = "0.6.0"
[build-dependencies]

View File

@@ -406,10 +406,10 @@ class OpenSKInstaller:
self.args.application))
elf2tab_ver = self.checked_command_output(["elf2tab", "--version"]).split(
"\n", maxsplit=1)[0]
if elf2tab_ver != "elf2tab 0.5.0":
if elf2tab_ver != "elf2tab 0.6.0":
error(
("Detected unsupported elf2tab version {!a}. The following "
"commands may fail. Please use 0.5.0 instead.").format(elf2tab_ver))
"commands may fail. Please use 0.6.0 instead.").format(elf2tab_ver))
os.makedirs(self.tab_folder, exist_ok=True)
tab_filename = os.path.join(self.tab_folder,
"{}.tab".format(self.args.application))

View File

@@ -42,4 +42,4 @@ pip3 install --user --upgrade 'tockloader==1.5' six intelhex
rustup target add thumbv7em-none-eabi
# Install dependency to create applications.
cargo install elf2tab --version 0.5.0
cargo install elf2tab --version 0.6.0