diff --git a/generator/CHANGELOG.md b/generator/CHANGELOG.md index 0acf94ae..9777362e 100644 --- a/generator/CHANGELOG.md +++ b/generator/CHANGELOG.md @@ -1,6 +1,6 @@ -## Unreleased changes +## 1.1.1 -- Stop `wccd` mode from minting to everyone faster than the specified TPS. +Stop `wccd` mode from minting to everyone faster than the specified TPS. ## 1.1.0 diff --git a/generator/Cargo.lock b/generator/Cargo.lock index 0855a058..ed47ce27 100644 --- a/generator/Cargo.lock +++ b/generator/Cargo.lock @@ -978,7 +978,7 @@ dependencies = [ [[package]] name = "generator" -version = "1.1.0" +version = "1.1.1" dependencies = [ "anyhow", "chrono", diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 9722bc31..c41856d8 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,17 +1,20 @@ [package] name = "generator" -version = "1.1.0" +version = "1.1.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] concordium-rust-sdk = { path = "../deps/concordium-rust-sdk", version = "*" } -clap = {version = "4", features = ["derive", "color"] } +clap = { version = "4", features = ["derive", "color"] } anyhow = "1" -chrono = {version = "0.4", features = ["serde"] } +chrono = { version = "0.4", features = ["serde"] } rand = "0.7" -tokio = {version = "1.27", features = ["rt-multi-thread", "macros", "time"]} -tonic = {version = "0.8", features = ["tls", "tls-roots"]} # Use system trust roots. +tokio = { version = "1.27", features = ["rt-multi-thread", "macros", "time"] } +tonic = { version = "0.8", features = [ + "tls", + "tls-roots", +] } # Use system trust roots. futures = "0.3.28" http = "0.2.9" serde_json = "1.0.96"