Skip to content

Commit fcad145

Browse files
committed
fix: [email protected] futures-03-sink feature
1 parent c6acd24 commit fcad145

File tree

6 files changed

+48
-40
lines changed

6 files changed

+48
-40
lines changed

.cargo/config.toml

-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ llvm-cov = ["bin", "cargo-llvm-cov"]
77
nextest = ["bin", "cargo-nextest"]
88
semver-checks = ["bin", "cargo-semver-checks"]
99

10-
# Tests
11-
1210
test_wasm = [
1311
"test",
1412
"--target",
@@ -65,8 +63,6 @@ test_wasm_client_solana_docs = [
6563
"ssr",
6664
]
6765

68-
# Coverage
69-
7066
coverage_streams = [
7167
"llvm-cov",
7268
"--no-report",

Cargo.lock

+30-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,10 @@ wasm_client_solana = { path = "./crates/wasm_client_solana", version = "0.7.1" }
105105
anchor-cli = { git = "https://github.com/coral-xyz/anchor", rev = "955e7ea", version = "0.30.1", bins = ["anchor"] }
106106
cargo-insta = { version = "1.41.1" }
107107
cargo-llvm-cov = { version = "0.6.14" }
108-
cargo-nextest = { version = "0.9.85" }
109-
wait-for-them = { version = "0.4.0", bins = ["wait-for-them"] }
108+
cargo-nextest = { version = "0.9.86" }
109+
cargo-semver-checks = { version = "0.38.0" }
110+
release-plz = { version = "0.3.111", bins = ["release-plz"] }
111+
wait-for-them = { version = "0.5.0", bins = ["wait-for-them"] }
110112
wasm-bindgen-cli = { version = "0.2.99", bins = ["wasm-bindgen", "wasm-bindgen-test-runner"] }
111113

112114
[profile.dev.package]

crates/wasm_client_solana/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ crate-type = ["cdylib", "lib"]
2020

2121
[dependencies]
2222
async-trait = { workspace = true }
23-
async-tungstenite = "=0.28.0"
23+
async-tungstenite = { version = "0.28.1", features = ["futures-03-sink"] }
2424
base64 = { workspace = true }
2525
bincode = { workspace = true }
2626
bs58 = { workspace = true }

devenv.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@
5353
},
5454
"nixpkgs": {
5555
"locked": {
56-
"lastModified": 1733905208,
56+
"lastModified": 1734092841,
5757
"owner": "NixOS",
5858
"repo": "nixpkgs",
59-
"rev": "d93447f35096248ff75366bfdd5abfdac1bdc326",
59+
"rev": "7cf092925906d588daabc696d663c100f2bbacc6",
6060
"type": "github"
6161
},
6262
"original": {
@@ -83,10 +83,10 @@
8383
},
8484
"nixpkgs_2": {
8585
"locked": {
86-
"lastModified": 1733749988,
86+
"lastModified": 1733935885,
8787
"owner": "NixOS",
8888
"repo": "nixpkgs",
89-
"rev": "bc27f0fde01ce4e1bfec1ab122d72b7380278e68",
89+
"rev": "5a48e3c2e435e95103d56590188cfed7b70e108c",
9090
"type": "github"
9191
},
9292
"original": {
@@ -131,10 +131,10 @@
131131
"nixpkgs": "nixpkgs_2"
132132
},
133133
"locked": {
134-
"lastModified": 1733884434,
134+
"lastModified": 1734057252,
135135
"owner": "oxalica",
136136
"repo": "rust-overlay",
137-
"rev": "d0483df44ddf0fd1985f564abccbe568e020ddf2",
137+
"rev": "1f56a5c88e4dcaa0ab1ba04c4bc5a977cff840b2",
138138
"type": "github"
139139
},
140140
"original": {

devenv.nix

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@
3939
'';
4040
description = "The `anchor` executable";
4141
};
42+
scripts."release-plz" = {
43+
exec = ''
44+
set -e
45+
cargo bin release-plz $@
46+
'';
47+
description = "The `release-plz` executable";
48+
};
4249
scripts."wasm-bindgen-test-runner" = {
4350
exec = ''
4451
set -e

0 commit comments

Comments
 (0)