Skip to content

Commit

Permalink
Merge pull request #262 from tkr-sh/develop
Browse files Browse the repository at this point in the history
Minor fixes to README
  • Loading branch information
aatxe authored Nov 6, 2024
2 parents 6767278 + 5b94c53 commit 9c9e8b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9c9e8b2

Please sign in to comment.