Skip to content

Commit

Permalink
Merge pull request #10 from GiGainfosystems/update_for_latest_toolchain
Browse files Browse the repository at this point in the history
Update deps to be compatible with Rust 1.84.0
  • Loading branch information
weiznich authored Jan 10, 2025
2 parents 608401a + a1971bc commit 4bd550e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.83.0
- uses: dtolnay/rust-toolchain@1.84.0
with:
components: clippy, rustfmt
- name: Set environment variables
Expand All @@ -29,6 +29,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.83.0
- uses: dtolnay/rust-toolchain@1.84.0
- name: Run test
run: cargo test -p tests
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions buffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "buffi"
description = "A tool to generate ergonomic, buffer-based C++ APIs."
version = "0.2.4+rust.1.83.0"
version = "0.2.5+rust.1.84.0"
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/buffi"
Expand All @@ -15,4 +15,4 @@ serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
serde-generate = { version = "0.26.0", default-features = false, features = ["cpp"] }
serde-reflection = "0.4.0"
rustdoc-types = "0.31.0"
rustdoc-types = "0.32.2"
2 changes: 1 addition & 1 deletion buffi_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "buffi_macro"
description = "A proc-macro to generate ergonomic, buffer-based C++ APIs."
version = "0.2.4"
version = "0.2.5"
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/buffi_macro"
Expand Down
2 changes: 1 addition & 1 deletion example/buffi_example/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.83.0
1.84.0
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.83.0"
channel = "1.84.0"
components = ["rustfmt", "clippy"]
profile = "minimal"

0 comments on commit 4bd550e

Please sign in to comment.