Skip to content

Commit

Permalink
Fix minor syntax, bump dependencies, and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan-Blanchard committed Nov 21, 2024
1 parent 1403574 commit ef6b4ce
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 40 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@

- Considering package re-organization for better imports etc.
- Convenient type defs and functions for verbose type signatures like `Box<Arc<Mutex<dyn SecretsProvider>>>`
- Will drop V1 websockets support in upcoming version
- Secrecy had a major breaking change (if moving to 0.10.3), which will force breaking changes to the `Secrets` struct
and `SecretsProvider` trait

### v0.6.0

- Deprecate `debug-inbound` and `debug-outbound` features
- Add `new_with_tracing` method to `KrakenClient` to allow setting a flag for tracing inbound REST messages
- Add `new_with_tracing` method to `KrakenWSSClient` to allow setting a flag for tracing inbound websocket messages
-

### v0.5.0

Expand Down
70 changes: 35 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ exclude = [".idea", ".gitignore", ".github", ".env", "*.log", "scripts"]
[dependencies]
base64 = "0.22.1"
hmac = "0.12.1"
hyper = { version = "1.5.0", features = ["full"] }
hyper = { version = "1.5.1", features = ["full"] }
hyper-util = { version = "0.1.10", features = ["full", "client-legacy", "tokio"] }
http-body-util = "0.1.2"
hyper-tls = "0.6.0"
sha2 = "0.10.8"
tokio = { version = "1.41.1", features = ["full"] }
dotenvy = "0.15.7"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.132", features = [] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = { version = "1.0.133", features = [] }
url = "2.5.3"
serde_with = { version = "3.11.0", features = ["time_0_3"] }
serde_tuple = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/wss/v2/kraken_wss_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ mod tests {
.await
.unwrap();

assert!(!logs_contain(r#"Sending:"#));
assert!(!logs_contain("Sending:"));
assert!(!logs_contain("Received: response"));
}

Expand Down

0 comments on commit ef6b4ce

Please sign in to comment.