Skip to content

Commit e63367c

Browse files
committed
Update nitrokey crate to 0.3.5
This change updates the nitrokey crate to version 0.3.5. The main reason for this new version of the crate is a build fix due to a backwards compatibility breaking change in upstream libnitrokey. For that reason, we also have to bump the minimum required version to avoid build failures. Import subrepo nitrokey/:nitrokey at f2cc7fdf081340b0b812f0b212537ba2b55d382e
1 parent 9091de4 commit e63367c

File tree

7 files changed

+11
-15
lines changed

7 files changed

+11
-15
lines changed

nitrocli/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Unreleased
88
- Moved its output into `status` command
99
- Removed previously deprecated `--ascii` option from `otp set` command
1010
- Fixed wrong hexadecimal conversion used in `otp set` command
11+
- Bumped `nitrokey` dependency to `0.3.5`
1112
- Bumped `libc` dependency to `0.2.66`
1213
- Bumped `cc` dependency to `1.0.48`
1314

nitrocli/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nitrocli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ path = "../base32"
5353
version = "0.2"
5454

5555
[dependencies.nitrokey]
56-
version = "0.3.1"
56+
version = "0.3.5"
5757

5858
[dev-dependencies.nitrokey-test]
5959
version = "0.1.1"

nitrokey/.builds/archlinux-use-system-lib.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ packages:
55
environment:
66
USE_SYSTEM_LIBNITROKEY: "1"
77
sources:
8-
- https://git.sr.ht/~ireas/nitrokey-rs
8+
- https://git.ireas.org/nitrokey-rs
99
tasks:
1010
- build: |
1111
cd nitrokey-rs
@@ -16,7 +16,3 @@ tasks:
1616
- format: |
1717
cd nitrokey-rs
1818
cargo fmt -- --check
19-
triggers:
20-
- action: email
21-
condition: failure
22-
to: nitrokey-rs-dev <nitrokey-rs-dev@ireas.org>

nitrokey/.builds/archlinux.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ packages:
44
- hidapi
55
- gcc
66
sources:
7-
- https://git.sr.ht/~ireas/nitrokey-rs
7+
- https://git.ireas.org/nitrokey-rs
88
tasks:
99
- build: |
1010
cd nitrokey-rs
@@ -15,7 +15,3 @@ tasks:
1515
- format: |
1616
cd nitrokey-rs
1717
cargo fmt -- --check
18-
triggers:
19-
- action: email
20-
condition: failure
21-
to: nitrokey-rs-dev <nitrokey-rs-dev@ireas.org>

nitrokey/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v0.3.5 (2019-12-16)
2+
- Update the nitrokey-sys dependency version specification to ~3.4.
3+
14
# v0.3.4 (2019-01-20)
25
- Fix authentication methods that assumed that `char` is signed.
36

nitrokey/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nitrokey"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
55
edition = "2018"
66
homepage = "https://code.ireas.org/nitrokey-rs/"
@@ -18,7 +18,7 @@ test-storage = []
1818

1919
[dependencies]
2020
libc = "0.2"
21-
nitrokey-sys = "3.4"
21+
nitrokey-sys = "~3.4"
2222
rand_core = {version = "0.3", default-features = false}
2323
rand_os = {version = "0.1"}
2424

0 commit comments

Comments
 (0)