32e2557456
* Fix tokio error in 1.39
Fix the error generated by tokio 1.39
72 | / tokio::select! {
173 | | daemon_res = &mut fused_runner => {
174 | | warn!("the daemon has terminated by itself - was it a short lived command?");
175 | | let exit_status = daemon_res?;
... |
179 | | event = &mut self.upgrade_plan_watcher.next() => {
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
... |
201 | | }
202 | | }
| | -
| | |
| |_____________temporary value is freed at the end of this statement
| borrow later used here
and
62 | / select! {
63 | | connection_message = &mut mix_receiver.next() => {
| | ^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
64 | | if let Some(connection_message) = connection_message {
65 | | if deal_with_message(connection_message, &mut writer, &local_destination_address, &remote_source_address, connection_id).await {
... |
86 | | }
87 | | }
| | -
| | |
| |_________temporary value is freed at the end of this statement
| borrow later used here
* Upgrade to tokio 1.39.1
* Simpler attempt
* Revert fixes and instead bump to tokio 1.39.2
* update
* bump msrv for nym-node-tester-wasm
36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
name = "nym-node-tester-wasm"
|
|
authors = ["Jedrzej Stuczynski <andrew@nymtech.net>"]
|
|
version = "1.3.0-rc.0"
|
|
edition = "2021"
|
|
keywords = ["nym", "sphinx", "webassembly", "privacy", "tester"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/nymtech/nym"
|
|
rust-version = "1.64"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
futures = { workspace = true }
|
|
js-sys = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tsify = { workspace = true, features = ["js"] }
|
|
|
|
wasmtimer = { workspace = true }
|
|
|
|
nym-node-tester-utils = { path = "../../common/node-tester-utils" }
|
|
wasm-client-core = { path = "../../common/wasm/client-core" }
|
|
wasm-utils = { path = "../../common/wasm/utils" }
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|