Skip to content

Commit 6325455

Browse files
committed
try fix crates.io publish
1 parent 14805a6 commit 6325455

File tree

6 files changed

+42
-44
lines changed

6 files changed

+42
-44
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ jobs:
3434
- name: Publish drift-rs
3535
run: |
3636
# add libdrift_ffi_sys
37-
curl -L https://github.com/drift-labs/drift-ffi-sys/releases/download/v2.103.0/libdrift_ffi_sys.so.zip > ffi.zip
38-
unzip ffi.zip
37+
curl -L https://github.com/drift-labs/drift-ffi-sys/releases/download/v2.107.0/libdrift_ffi_sys.so
3938
sudo mv libdrift_ffi_sys.so $CARGO_DRIFT_FFI_PATH
40-
rm ffi.zip # clean up for git
4139
# publish to crates.io
4240
cargo publish
4341
env:

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ hex = "0.4"
4949
hex-literal = "0.4"
5050

5151
[build-dependencies]
52-
drift-idl-gen = { version = "0.1.1", path = "crates/drift-idl-gen"}
52+
drift-idl-gen = { version = "0.1.3", path = "crates/drift-idl-gen"}

crates/drift-idl-gen/Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/drift-idl-gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "drift-idl-gen"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
license = "Apache-2.0"
66
repository = "https://github.com/drift-labs/drift-rs"

crates/src/websocket_account_subscriber.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ impl WebsocketAccountSubscriber {
172172
}
173173
}
174174
},
175-
Err(_) => {
175+
Err(err) => {
176176
log::error!(
177-
"{}: Failed to subscribe to account stream, retrying",
177+
"{}: Failed to subscribe to account stream: {err:?}, retrying",
178178
subscription_name
179179
);
180180
attempt += 1;

0 commit comments

Comments
 (0)