diff --git a/CHANGELOG.md b/CHANGELOG.md index ca0e1de..ba9f10e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ Protocols: - The Ship: Removed instances of using `unwrap` without handling the panics. Crate: +- Updated [byteorder](https://crates.io/crates/byteorder) dependency from 1.4 to 1.5. - Rich errors, capturing backtrace is done on `RUST_BACKTRACE=1`. (by @Douile) - Applied some nursery Clippy lints. - The `retries` field was added to `TimeoutSettings` that specifies the number of times to retry a failed request (request being individual send, receive sequence, some protocols can include multiple requests in a single query). (by @Douile) diff --git a/Cargo.toml b/Cargo.toml index e3e41b8..7b9fe6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ game_defs = ["dep:phf", "games"] serde = ["dep:serde", "serde/derive"] [dependencies] -byteorder = "1.4" +byteorder = "1.5" bzip2-rs = "0.1" crc32fast = "1.3" serde_json = "1.0"