Skip to content

Commit

Permalink
Upgrade all dependencies (#383)
Browse files Browse the repository at this point in the history
The following crates were held back:
- `generic-array` because RustCrypto did not (and will not) migrate to
1.0.0
- `embedded-hal` because nRF HALs did not (yet) migrato to 1.0.0
  • Loading branch information
ia0 committed Jan 19, 2024
1 parent 8dc0267 commit d8957cc
Show file tree
Hide file tree
Showing 91 changed files with 1,873 additions and 2,215 deletions.
1 change: 1 addition & 0 deletions crates/api-desc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

### Patch

- Update dependencies
- Fix clippy lint
- Make sure enum values don't skip any value, essentially mapping to `0..N`
- Use `*const void` instead of `*const u8` for opaque data
Expand Down
28 changes: 14 additions & 14 deletions crates/api-desc/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions crates/api-desc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ keywords = ["embedded", "framework", "no-std", "wasm"]
categories = ["embedded", "no-std", "wasm"]

[dependencies]
anyhow = { version = "1.0.75", default-features = false, features = ["std"] }
clap = { version = "4.4.11", default-features = false, features = ["derive", "std"] }
anyhow = { version = "1.0.79", default-features = false, features = ["std"] }
clap = { version = "4.4.18", default-features = false, features = ["derive", "std"] }
data-encoding = { version = "2.5.0", default-features = false }
data-encoding-macro = { version = "0.1.14", default-features = false }
proc-macro2 = { version = "1.0.70", default-features = false }
quote = { version = "1.0.33", default-features = false }
syn = { version = "2.0.41", default-features = false, features = ["printing"] }
proc-macro2 = { version = "1.0.76", default-features = false }
quote = { version = "1.0.35", default-features = false }
syn = { version = "2.0.48", default-features = false, features = ["printing"] }

[features]
# API features.
Expand Down
1 change: 1 addition & 0 deletions crates/api-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

### Patch

- Update dependencies
- Update dependencies

## 0.5.0
Expand Down
28 changes: 14 additions & 14 deletions crates/api-macro/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/api-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["embedded", "no-std", "wasm"]
proc-macro = true

[dependencies]
proc-macro2 = { version = "1.0.70", default-features = false }
proc-macro2 = { version = "1.0.76", default-features = false }
wasefire-applet-api-desc = { version = "=0.1.6-git", path = "../api-desc" }

[features]
Expand Down
42 changes: 21 additions & 21 deletions crates/api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d8957cc

Please sign in to comment.