From 304a25ab3fe6656731cb8054c22cf4dee1e3470e Mon Sep 17 00:00:00 2001 From: tkirishima Date: Mon, 13 May 2024 18:51:14 +0000 Subject: [PATCH 1/2] chore(bump): version of the crate --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db4458a9..e4d695dd 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Making your own project? [Submit a pull request](https://github.com/aatxe/irc/pu ## Getting Started -To start using the irc crate with cargo, you can add `irc = "0.15"` to your dependencies in +To start using the irc crate with cargo, you can add `irc = "1.0.0"` to your dependencies in or you can use the comman `cargo add irc`. your Cargo.toml file. The high-level API can be found in [`irc::client::prelude`][irc-prelude]. You'll find a number of examples to help you get started in `examples/`, throughout the documentation, and below. @@ -89,7 +89,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -irc = "0.15.0" +irc = "1.0.0" tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros", "net", "time"] } futures = "0.3.0" failure = "0.1.8" From 5b94c53558f3843d171292df64315476537b95f2 Mon Sep 17 00:00:00 2001 From: tkirishima Date: Mon, 13 May 2024 18:51:55 +0000 Subject: [PATCH 2/2] fix(README): proxy_port is a u16 not &str --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4d695dd..d13acc24 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ port = 6697 password = "" proxy_type = "None" proxy_server = "127.0.0.1" -proxy_port = "1080" +proxy_port = 1080 proxy_username = "" proxy_password = "" use_tls = true