diff --git a/Cargo.lock b/Cargo.lock index be01afa51f..fb694231ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4603,7 +4603,7 @@ dependencies = [ "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.38", ] [[package]] diff --git a/benches/native_vps.rs b/benches/native_vps.rs index 49904f1915..b3eff8041b 100644 --- a/benches/native_vps.rs +++ b/benches/native_vps.rs @@ -952,7 +952,7 @@ fn ibc_vp_validate_action(c: &mut Criterion) { // Connection handshake let msg = MsgConnectionOpenInit { client_id_on_a: ClientId::new( - ClientType::new("01-tendermint".to_string()).unwrap(), + ClientType::new("01-tendermint").unwrap(), 1, ) .unwrap(), @@ -1033,7 +1033,7 @@ fn ibc_vp_validate_action(c: &mut Criterion) { actions.set_validation_params(ibc.validation_params().unwrap()); let module = TransferModule::new(ctx); - actions.add_transfer_route(module.module_id(), module); + actions.add_transfer_module(module.module_id(), module); group.bench_function(bench_name, |b| { b.iter(|| actions.validate(&tx_data).unwrap()) @@ -1050,7 +1050,7 @@ fn ibc_vp_execute_action(c: &mut Criterion) { // Connection handshake let msg = MsgConnectionOpenInit { client_id_on_a: ClientId::new( - ClientType::new("01-tendermint".to_string()).unwrap(), + ClientType::new("01-tendermint").unwrap(), 1, ) .unwrap(), @@ -1131,7 +1131,7 @@ fn ibc_vp_execute_action(c: &mut Criterion) { actions.set_validation_params(ibc.validation_params().unwrap()); let module = TransferModule::new(ctx); - actions.add_transfer_route(module.module_id(), module); + actions.add_transfer_module(module.module_id(), module); group.bench_function(bench_name, |b| { b.iter(|| actions.execute(&tx_data).unwrap()) diff --git a/benches/txs.rs b/benches/txs.rs index e12e6d9004..abfb38e0bb 100644 --- a/benches/txs.rs +++ b/benches/txs.rs @@ -721,7 +721,7 @@ fn ibc(c: &mut Criterion) { // Connection handshake let msg = MsgConnectionOpenInit { client_id_on_a: ClientId::new( - ClientType::new("01-tendermint".to_string()).unwrap(), + ClientType::new("01-tendermint").unwrap(), 1, ) .unwrap(), diff --git a/wasm/Cargo.lock b/wasm/Cargo.lock index f83e150e4e..08170e1095 100644 --- a/wasm/Cargo.lock +++ b/wasm/Cargo.lock @@ -3697,7 +3697,7 @@ dependencies = [ "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.38", ] [[package]] diff --git a/wasm_for_tests/wasm_source/Cargo.lock b/wasm_for_tests/wasm_source/Cargo.lock index df3b5c3534..f3efd192b7 100644 --- a/wasm_for_tests/wasm_source/Cargo.lock +++ b/wasm_for_tests/wasm_source/Cargo.lock @@ -3690,7 +3690,7 @@ dependencies = [ "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.16", + "syn 2.0.38", ] [[package]]