[package] name = "irc" version = "0.13.6" description = "the irc crate – usable, async IRC for Rust " authors = ["Aaron Weiss "] 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] travis-ci = { repository = "aatxe/irc" } is-it-maintained-issue-resolution = { repository = "aatxe/irc" } is-it-maintained-open-issues = { repository = "aatxe/irc" } [workspace] members = [ "./", "irc-proto" ] [features] default = ["ctcp", "toml_config"] ctcp = [] nochanlists = [] json_config = ["serde", "serde_derive", "serde_json"] toml_config = ["serde", "serde_derive", "toml"] yaml_config = ["serde", "serde_derive", "serde_yaml"] proxy = ["tokio-socks"] # Temporary transitionary features json = ["json_config"] yaml = ["yaml_config"] [dependencies] thiserror = "1.0.2" bufstream = "0.1" bytes = "0.5" chrono = "0.4" encoding = "0.2" irc-proto = { version = "*", path = "irc-proto" } log = "0.4" native-tls = "0.2" serde = { version = "1.0", features = ["derive"], optional = true } serde_derive = { version = "1.0", optional = true } tokio = { version = "0.2.4", features = ["time", "net", "stream", "macros"] } tokio-util = { version = "0.3.0", features = ["codec"] } tokio-socks = { version = "0.2.0", optional = true } tokio-tls = "0.3.0" serde_json = { version = "1.0", optional = true } serde_yaml = { version = "0.8", optional = true } toml = { version = "0.5", optional = true } pin-utils = "0.1.0-alpha.4" parking_lot = "0.10.0" futures-channel = "0.3.1" futures-util = { version = "0.3.1", features = ["sink"] } [dev-dependencies] futures = "0.3.1" anyhow = "1.0.13" args = "2.0" getopts = "0.2" env_logger = "0.7" [[example]] name = "proxy" path = "examples/proxy.rs" required-features = ["proxy"]