-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
182 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[package] | ||
name = "irc" | ||
version = "0.15.0" | ||
description = "the irc crate – usable, async IRC for Rust " | ||
authors = ["Aaron Weiss <[email protected]>"] | ||
edition = "2018" | ||
rust-version = "1.60" | ||
description = "the irc crate – usable, async IRC for Rust " | ||
documentation = "https://docs.rs/irc/" | ||
readme = "README.md" | ||
repository = "https://github.com/aatxe/irc" | ||
license = "MPL-2.0" | ||
keywords = ["irc", "client", "thread-safe", "async", "tokio"] | ||
categories = ["asynchronous", "network-programming"] | ||
documentation = "https://docs.rs/irc/" | ||
repository = "https://github.com/aatxe/irc" | ||
readme = "README.md" | ||
edition = "2018" | ||
|
||
|
||
[badges] | ||
|
@@ -37,46 +38,47 @@ yaml = ["yaml_config"] | |
proxy = ["tokio-socks"] | ||
|
||
tls-native = ["native-tls", "tokio-native-tls"] | ||
tls-rust = ["tokio-rustls", "webpki-roots"] | ||
tls-rust = ["tokio-rustls", "webpki-roots", "rustls-pemfile"] | ||
|
||
|
||
[dependencies] | ||
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] } | ||
encoding = "0.2.0" | ||
futures-util = { version = "0.3.0", default-features = false, features = ["alloc", "sink"] } | ||
chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] } | ||
encoding = "0.2.33" | ||
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "sink"] } | ||
irc-proto = { version = "0.15.0", path = "irc-proto" } | ||
log = "0.4.0" | ||
parking_lot = "0.11.0" | ||
thiserror = "1.0.0" | ||
pin-project = "1.0.2" | ||
tokio = { version = "1.0.0", features = ["net", "time", "sync"] } | ||
tokio-stream = "0.1.0" | ||
tokio-util = { version = "0.6.0", features = ["codec"] } | ||
log = "0.4.17" | ||
parking_lot = "0.12.1" | ||
thiserror = "1.0.40" | ||
pin-project = "1.0.12" | ||
tokio = { version = "1.27.0", features = ["net", "time", "sync"] } | ||
tokio-stream = "0.1.12" | ||
tokio-util = { version = "0.7.7", features = ["codec"] } | ||
|
||
# Feature - Config | ||
serde = { version = "1.0.0", optional = true } | ||
serde_derive = { version = "1.0.0", optional = true } | ||
serde_json = { version = "1.0.0", optional = true } | ||
serde_yaml = { version = "0.8.0", optional = true } | ||
toml = { version = "0.5.0", optional = true } | ||
serde = { version = "1.0.160", optional = true } | ||
serde_derive = { version = "1.0.160", optional = true } | ||
serde_json = { version = "1.0.95", optional = true } | ||
serde_yaml = { version = "0.9.21", optional = true } | ||
toml = { version = "0.7.3", optional = true } | ||
|
||
# Feature - Proxy | ||
tokio-socks = { version = "0.5.1", optional = true } | ||
|
||
# Feature - TLS | ||
native-tls = { version = "0.2.0", optional = true } | ||
tokio-rustls = { version = "0.22.0", features = ["dangerous_configuration"], optional = true } | ||
tokio-native-tls = { version = "0.3.0", optional = true } | ||
webpki-roots = { version = "0.20.0", optional = true } | ||
native-tls = { version = "0.2.11", optional = true } | ||
tokio-rustls = { version = "0.24.0", features = ["dangerous_configuration"], optional = true } | ||
rustls-pemfile = { version = "1.0.2", optional = true } | ||
tokio-native-tls = { version = "0.3.1", optional = true } | ||
webpki-roots = { version = "0.23.0", optional = true } | ||
|
||
|
||
[dev-dependencies] | ||
anyhow = "1.0.0" | ||
args = "2.0.0" | ||
env_logger = "0.7.0" | ||
futures = "0.3.0" | ||
getopts = "0.2.0" | ||
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros", "net", "time"] } | ||
anyhow = "1.0.70" | ||
args = "2.2.0" | ||
env_logger = "0.10.0" | ||
futures = "0.3.28" | ||
getopts = "0.2.21" | ||
tokio = { version = "1.27.0", features = ["rt", "rt-multi-thread", "macros", "net", "time"] } | ||
|
||
|
||
[[example]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
[package] | ||
name = "irc-proto" | ||
version = "0.15.0" | ||
description = "The IRC protocol distilled." | ||
authors = ["Aaron Weiss <[email protected]>"] | ||
edition = "2018" | ||
rust-version = "1.60" | ||
description = "The IRC protocol distilled." | ||
documentation = "https://docs.rs/irc-proto/" | ||
repository = "https://github.com/aatxe/irc" | ||
license = "MPL-2.0" | ||
keywords = ["irc", "protocol", "tokio"] | ||
categories = ["network-programming"] | ||
documentation = "https://docs.rs/irc-proto/" | ||
repository = "https://github.com/aatxe/irc" | ||
edition = "2018" | ||
|
||
[badges] | ||
travis-ci = { repository = "aatxe/irc" } | ||
|
@@ -17,9 +18,9 @@ travis-ci = { repository = "aatxe/irc" } | |
default = ["bytes", "tokio", "tokio-util"] | ||
|
||
[dependencies] | ||
encoding = "0.2.0" | ||
thiserror = "1.0.0" | ||
encoding = "0.2.33" | ||
thiserror = "1.0.40" | ||
|
||
bytes = { version = "1.0.0", optional = true } | ||
tokio = { version = "1.0.0", optional = true } | ||
tokio-util = { version = "0.6.0", features = ["codec"], optional = true } | ||
bytes = { version = "1.4.0", optional = true } | ||
tokio = { version = "1.27.0", optional = true } | ||
tokio-util = { version = "0.7.7", features = ["codec"], optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.