diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e51705..57e6f3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,35 +1,36 @@ main: - * Accept nalgebra versions up to 0.33. + * Accept `nalgebra` versions up to `0.33`. + * Update `prost` to version `0.13`. v0.7.4 - 2022-06-08 - * Accept nalgebra versions up to 0.31. - * Update to prost version 0.10. + * Accept `nalgebra` versions up to `0.31`. + * Update to `prost` to version `0.10`. v0.7.3 - * Accept nalgebra versions up to 0.30. + * Accept `nalgebra` versions up to `0.30`. v0.7.2 * Dual license as BSD-2-Clause and Apache-2.0. v0.7.1 - * Update to prost `0.9.0`. + * Update `prost` to version `0.9.0`. v0.7.0 * Fix `tokio_peer::EgmPeer::bind_sync()` to set non-blocking mode on the created socket. * Make `tokio_peer::EgmPeer::purge_read_queue()` synchronous. v0.6.0 - * Update to tokio 1.11.0. - * Update to prost 0.8.0. - * Disable nalgebra feature by default. + * Update `tokio` to version `1.11.0`. + * Update `prost` to version `0.8.0`. + * Disable `nalgebra` feature by default. v0.5.0 - * Update to tokio 0.3.0. + * Update `tokio` to version `0.3.0`. * Make `Peer::send/recv` functions take non-mutable `&self`. * Remove `Peer::split()` since you can now use shared references to send/recv. v0.4.2 - * Accept nalgebra 0.21 and 0.22. + * Accept `nalgebra` versions `0.21` and `0.22`. v0.4.1 * Add methods to purge the socket read queue. diff --git a/Cargo.toml b/Cargo.toml index afcb549..6720317 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,14 +21,14 @@ default = ["tokio"] [dependencies] nalgebra = { version = ">=0.21.0, <0.34", optional = true } -prost = "0.10.4" +prost = "0.13.3" tokio = { version = "1.11.0", optional = true, features = ["net"] } [dev-dependencies] abbegm = { path = ".", features = ["nalgebra", "tokio"] } assert2 = "0.3.2" structopt = "0.3.0" -tokio = { version = "1.11.0", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"] } log = "0.4.11" -env_logger = "0.9.0" +env_logger = "0.11.5" rand = "0.8.4"