Skip to content

Update deps to be compatible with Rust 1.84.0 #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Loading