Skip to content

Commit 9c9e8b2

Browse files
authored
Merge pull request #262 from tkr-sh/develop
Minor fixes to README
2 parents 6767278 + 5b94c53 commit 9c9e8b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Making your own project? [Submit a pull request](https://github.com/aatxe/irc/pu
4141

4242
## Getting Started
4343

44-
To start using the irc crate with cargo, you can add `irc = "0.15"` to your dependencies in
44+
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`.
4545
your Cargo.toml file. The high-level API can be found in [`irc::client::prelude`][irc-prelude].
4646
You'll find a number of examples to help you get started in `examples/`, throughout the
4747
documentation, and below.
@@ -89,7 +89,7 @@ edition = "2018"
8989
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9090
9191
[dependencies]
92-
irc = "0.15.0"
92+
irc = "1.0.0"
9393
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros", "net", "time"] }
9494
futures = "0.3.0"
9595
failure = "0.1.8"
@@ -122,7 +122,7 @@ port = 6697
122122
password = ""
123123
proxy_type = "None"
124124
proxy_server = "127.0.0.1"
125-
proxy_port = "1080"
125+
proxy_port = 1080
126126
proxy_username = ""
127127
proxy_password = ""
128128
use_tls = true

0 commit comments

Comments
 (0)