From e1840ec9ef1abbbd9958805bca8250120988a9fa Mon Sep 17 00:00:00 2001 From: tottoto Date: Mon, 15 May 2023 02:04:05 +0900 Subject: [PATCH] Update to atoi 2.0.0 (#124) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb18acb..05a898e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -60,9 +60,9 @@ dependencies = [ [[package]] name = "atoi" -version = "0.3.3" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c897df197d57c25b37df9d8fa2f93ddbfeee9ebd2264350ac79c8ec4b795885" +checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" dependencies = [ "num-traits", ] diff --git a/Cargo.toml b/Cargo.toml index d7f26d7..4181ae6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ path = "src/bin/server.rs" [dependencies] async-stream = "0.3.0" -atoi = "0.3.2" +atoi = "2.0.0" bytes = "1" rand = "0.8.5" clap = { version = "3.1.18", features = ["derive"] }