Skip to content
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

Fixes for Rust 1.81.0 #1333

Merged
merged 8 commits into from
Sep 10, 2024
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/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update
- uses: stellar/binaries@v24
- uses: stellar/binaries@v30
with:
name: cargo-semver-checks
version: 0.32.0
version: 0.35.0
- run: cargo semver-checks

build-and-test:
Expand Down
17 changes: 12 additions & 5 deletions soroban-sdk-macros/src/derive_fn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub fn derive_pub_fn(
});

// Prepare the argument inputs.
let (wrap_args, wrap_calls): (Vec<_>, Vec<_>) = inputs
let (wrap_args, passthrough_calls, wrap_calls): (Vec<_>, Vec<_>, Vec<_>) = inputs
.iter()
.skip(if env_input.is_some() { 1 } else { 0 })
.enumerate()
Expand Down Expand Up @@ -78,6 +78,7 @@ pub fn derive_pub_fn(
colon_token: Colon::default(),
ty: Box::new(Type::Verbatim(quote! { #crate_path::Val })),
});
let passthrough_call = quote! { #ident };
let call = quote! {
<_ as #crate_path::unwrap::UnwrapOptimized>::unwrap_optimized(
<_ as #crate_path::TryFromValForContractFn<#crate_path::Env, #crate_path::Val>>::try_from_val_for_contract_fn(
Expand All @@ -86,11 +87,11 @@ pub fn derive_pub_fn(
)
)
};
(arg, call)
(arg, passthrough_call, call)
}
FnArg::Receiver(_) => {
errors.push(Error::new(a.span(), "self argument not supported"));
(a.clone(), quote! {})
(a.clone(), quote! {}, quote! {})
}
})
.multiunzip();
Expand Down Expand Up @@ -132,8 +133,7 @@ pub fn derive_pub_fn(
use super::*;

#[deprecated(note = #deprecated_note)]
#[cfg_attr(target_family = "wasm", export_name = #wrap_export_name)]
pub extern fn invoke_raw(env: #crate_path::Env, #(#wrap_args),*) -> #crate_path::Val {
pub fn invoke_raw(env: #crate_path::Env, #(#wrap_args),*) -> #crate_path::Val {
#use_trait;
<_ as #crate_path::IntoVal<#crate_path::Env, #crate_path::Val>>::into_val(
#[allow(deprecated)]
Expand All @@ -154,6 +154,13 @@ pub fn derive_pub_fn(
invoke_raw(env, #(#slice_args),*)
}

#[deprecated(note = #deprecated_note)]
#[cfg_attr(target_family = "wasm", export_name = #wrap_export_name)]
pub extern "C" fn invoke_raw_extern(env: #crate_path::Env, #(#wrap_args),*) -> #crate_path::Val {
#[allow(deprecated)]
invoke_raw(env, #(#passthrough_calls),*)
}

use super::*;
}
})
Expand Down
Loading