diff --git a/crates/lib/CHANGELOG.md b/crates/lib/CHANGELOG.md index 356b93c..6d8de26 100644 --- a/crates/lib/CHANGELOG.md +++ b/crates/lib/CHANGELOG.md @@ -20,6 +20,10 @@ Protocols: - Epic (EOS) support, available only on the `tls` feature. +Crate: + +- Updated some dependencies: `crc32fast` to `1.4.0`, `clap` to `4.5.4` and `ureq` to `ureq`. + # 0.5.0 - 15/03/2024 ### Changes: diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index 028180d..f3e2c26 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -40,11 +40,11 @@ tls = ["ureq/tls"] [dependencies] byteorder = "1.5" bzip2-rs = "0.1" -crc32fast = "1.3" +crc32fast = "1.4" base64 = "0.22.0" encoding_rs = "0.8" -ureq = { version = "2.8", default-features = false, features = ["gzip", "json"] } +ureq = { version = "2.9", default-features = false, features = ["gzip", "json"] } url = "2" serde = { version = "1.0", features = ["derive"] } @@ -52,7 +52,7 @@ serde_json = { version = "1.0" } phf = { version = "0.11", optional = true, features = ["macros"] } -clap = { version = "4.1.11", optional = true, features = ["derive"] } +clap = { version = "4.5.4", optional = true, features = ["derive"] } pcap-file = { version = "2.0", optional = true } pnet_packet = { version = "0.34", optional = true }