diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cda9d9..f74d681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ Procedure when bumping the version number: ### Changed - **(breaking)** `bot::instance::ServerConfig::default` now points to `euphoria.leet.nu` +- **(breaking)** Bumped `cookie` dependency from `0.17` to `0.18` +- **(breaking)** Bumped `tokio-tungstenite` dependency from `0.18` to `0.21` - Updated set of emoji names - Documentation now references `euphoria.leet.nu` instead of `euphoria.io` diff --git a/Cargo.toml b/Cargo.toml index 0015d88..45f5f62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,27 +7,27 @@ edition = "2021" bot = ["dep:async-trait", "dep:clap", "dep:cookie"] [dependencies] -async-trait = { version = "0.1.68", optional = true } +async-trait = { version = "0.1.75", optional = true } caseless = "0.2.1" -cookie = { version = "0.17.0", optional = true } -futures-util = { version = "0.3.28", default-features = false, features = ["sink"] } -log = "0.4.17" -serde = { version = "1.0.163", features = ["derive"] } -serde_json = "1.0.96" -time = { version = "0.3.21", features = ["serde"] } -tokio = { version = "1.28.1", features = ["time", "sync", "macros", "rt"] } +cookie = { version = "0.18.0", optional = true } +futures-util = { version = "0.3.30", default-features = false, features = ["sink"] } +log = "0.4.20" +serde = { version = "1.0.193", features = ["derive"] } +serde_json = "1.0.108" +time = { version = "0.3.31", features = ["serde"] } +tokio = { version = "1.35.1", features = ["time", "sync", "macros", "rt"] } tokio-stream = "0.1.14" -tokio-tungstenite = { version = "0.18.0", features = ["rustls-tls-native-roots"] } +tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-native-roots"] } unicode-normalization = "0.1.22" [dependencies.clap] -version = "4.2.7" +version = "4.4.11" optional = true default-features = false features = ["std", "derive", "deprecated"] [dev-dependencies] # For example bot -tokio = { version = "1.28.1", features = ["rt-multi-thread"] } +tokio = { version = "1.35.1", features = ["rt-multi-thread"] } [[example]] name = "testbot_instance"