Skip to content

Commit 5333815

Browse files
committed
Version bumparoo
1 parent 92f4d30 commit 5333815

File tree

15 files changed

+31
-32
lines changed

15 files changed

+31
-32
lines changed

components/apdu-dispatch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ edition = "2018"
88

99
[dependencies]
1010
delog = "0.1.0-alpha.3"
11-
heapless = "0.5.6"
12-
heapless-bytes = "0.1.1"
11+
heapless = "0.6"
12+
heapless-bytes = "0.2.0"
1313

1414
# Components
1515
iso7816 = { path = "../iso7816" }

components/applet-fido/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ edition = "2018"
88

99
[dependencies]
1010
delog = "0.1.0-alpha.3"
11-
heapless = "0.5.6"
12-
heapless-bytes = "0.1.1"
11+
heapless = "0.6"
12+
heapless-bytes = "0.2.0"
1313
serde = { version = "1", default-features = false }
1414

1515
apdu-dispatch = {path = "../apdu-dispatch"}

components/applet-ndef/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
heapless = "0.5.6"
11-
heapless-bytes = "0.1.1"
10+
heapless = "0.6"
11+
heapless-bytes = "0.2.0"
1212

1313
apdu-dispatch = {path = "../apdu-dispatch"}
1414
iso7816 = { path = "../iso7816" }

components/ctap-types/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ edition = "2018"
88

99
[dependencies]
1010
bitflags = "1.2.1"
11-
cbor-smol = "0.1.0"
12-
cosey = "0.1.0"
11+
cbor-smol = "0.2.0"
12+
cosey = "0.2.0"
1313
delog = "0.1.0-alpha.3"
14-
heapless = { version = "0.5.6", default-features = false, features = ["serde"] }
15-
heapless-bytes = "0.1.1"
14+
heapless = { version = "0.6", default-features = false, features = ["serde"] }
15+
heapless-bytes = "0.2.0"
1616
interchange = "0.1.0"
1717
iso7816 = { path = "../iso7816" }
1818
serde = { version = "1.0", default-features = false, features = ["derive"] }

components/fido-authenticator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ edition = "2018"
99
[dependencies]
1010
ctap-types = { path = "../ctap-types" }
1111
delog = "0.1.0-alpha.3"
12-
heapless = "0.5.6"
12+
heapless = "0.6"
1313
interchange = "0.1.0"
14-
littlefs2 = "0.1.0"
14+
littlefs2 = "0.2.1"
1515
serde = { version = "1.0", default-features = false }
1616
serde_cbor = { version = "0.11.0", default-features = false }
1717
serde-indexed = "0.1.0"

components/fm11nc08/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
cortex-m = "0.6.1"
10+
cortex-m = "0.7"
1111
cortex-m-rt = "0.6.10"
1212
delog = "0.1.0-alpha.3"
1313
iso14443 = {path = "../iso14443"}

components/hid-dispatch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ edition = "2018"
88

99
[dependencies]
1010
delog = "0.1.0-alpha.3"
11-
heapless = "0.5.6"
12-
heapless-bytes = "0.1.1"
11+
heapless = "0.6"
12+
heapless-bytes = "0.2.0"
1313
interchange = "0.1.0"
1414

1515
[features]

components/iso14443/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2018"
66

77
[dependencies]
88
delog = "0.1.0-alpha.3"
9-
heapless = "0.5.6"
10-
heapless-bytes = "0.1.1"
9+
heapless = "0.6"
10+
heapless-bytes = "0.2.0"
1111
nb = "1"
1212

1313
apdu-dispatch = { path = "../apdu-dispatch" }

components/iso7816/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
heapless = "0.5.6"
11-
heapless-bytes = "0.1.1"
10+
heapless = "0.6"
11+
heapless-bytes = "0.2.0"

components/piv-authenticator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2018"
1010
apdu-dispatch = { path = "../apdu-dispatch", optional = true }
1111
delog = "0.1.0-alpha.3"
1212
heapless = "0.6"
13-
heapless-bytes = "0.1"
13+
heapless-bytes = "0.2"
1414
hex-literal = "0.3"
1515
interchange = "0.1"
1616
iso7816 = { path = "../iso7816" }
@@ -20,7 +20,7 @@ trussed = { git = "https://github.com/trussed-dev/trussed", branch = "main" }
2020
untrusted = "0.7"
2121

2222
[dev-dependencies]
23-
littlefs2 = "0.1.0"
23+
littlefs2 = "0.2.1"
2424
rand_core = { version = "0.5.1", features = ["getrandom"] }
2525

2626
[features]

0 commit comments

Comments
 (0)