Merge pull request #237 from yancyribbens/fix/readme-example

Update the readme example
This commit is contained in:
Aaron Weiss 2023-05-22 10:57:17 -07:00 committed by GitHub
commit 3d037df761
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,7 @@ async fn main() -> Result<(), failure::Error> {
let config = Config {
nickname: Some("the-irc-crate".to_owned()),
server: Some("chat.freenode.net".to_owned()),
channels: Some(vec!["#test".to_owned()]),
channels: vec!["#test".to_owned()],
..Config::default()
};
@ -79,6 +79,22 @@ async fn main() -> Result<(), failure::Error> {
}
```
Example Cargo.toml file:
```rust,no_run,edition2018
[package]
name = "example"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
irc = "0.15.0"
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros", "net", "time"] }
futures = "0.3.0"
failure = "0.1.8"
```
## Configuring IRC Clients
As seen above, there are two techniques for configuring the irc crate: runtime loading and