From bfdf56b1908448f450f0d5b0bf0f848fe3beda0f Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Sat, 4 May 2024 17:43:26 +0200 Subject: [PATCH] chore(deps): update dependencies --- Cargo.toml | 26 +++++++++++++------------- deny.toml | 20 +++++++++++++++----- 2 files changed, 28 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b35b88..c1a181d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,28 +18,28 @@ features = ["events", "tls"] [dependencies] async-stream = { version = "0.3.5", optional = true } -base64 = "0.21.7" -bitflags = { version = "2.4.2", features = ["serde"] } +base64 = "0.22.1" +bitflags = { version = "2.5.0", features = ["serde"] } futures-util = { version = "0.3.30", features = ["sink"] } rgb = { version = "0.8.37", default-features = false } -semver = { version = "1.0.21", features = ["serde"] } -serde = { version = "1.0.195", features = ["derive"] } -serde_json = "1.0.111" -serde_repr = "0.1.18" -serde_with = "3.4.0" +semver = { version = "1.0.22", features = ["serde"] } +serde = { version = "1.0.200", features = ["derive"] } +serde_json = "1.0.116" +serde_repr = "0.1.19" +serde_with = "3.8.1" sha2 = "0.10.8" -thiserror = "1.0.56" -time = "0.3.31" -tokio = { version = "1.35.1", features = ["net", "rt", "sync", "time"] } +thiserror = "1.0.59" +time = "0.3.36" +tokio = { version = "1.37.0", features = ["net", "rt", "sync", "time"] } tokio-tungstenite = "0.21.0" tracing = "0.1.40" -uuid = { version = "1.7.0", features = ["serde"] } +uuid = { version = "1.8.0", features = ["serde"] } [dev-dependencies] -anyhow = "1.0.79" +anyhow = "1.0.82" dotenvy = "0.15.7" serde_test = "1.0.176" -tokio = { version = "1.35.1", features = ["fs", "macros", "rt-multi-thread", "time"] } +tokio = { version = "1.37.0", features = ["fs", "macros", "rt-multi-thread", "time"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } [features] diff --git a/deny.toml b/deny.toml index f30bb2a..4072be5 100644 --- a/deny.toml +++ b/deny.toml @@ -1,9 +1,19 @@ +[advisories] +version = 2 + [licenses] +version = 2 allow = [ + "Apache-2.0", + "BSD-3-Clause", + "ISC", + "MIT", "MPL-2.0", "OpenSSL", ] -allow-osi-fsf-free = "both" +exceptions = [ + { allow = ["Unicode-DFS-2016"], name = "unicode-ident" }, +] [[licenses.clarify]] name = "ring" @@ -13,7 +23,7 @@ license-files = [ { path = "LICENSE", hash = 0xbd0eed23 }, ] -[[licenses.exceptions]] -allow = ["Unicode-DFS-2016"] -name = "unicode-ident" -version = "*" +[bans] +skip-tree = [ + { name = "windows-sys", version = "0.48", depth = 3 }, +]