32900f8d49
This feature will disable user tracking including joins, parts, and modes. This is useful for bots on severely crowded channels (tens of thousands of users) that have no need for maintaining a list of users.
37 lines
703 B
TOML
37 lines
703 B
TOML
[package]
|
|
|
|
name = "irc"
|
|
version = "0.7.11"
|
|
description = "A simple, thread-safe IRC client library."
|
|
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
|
|
license = "Unlicense"
|
|
keywords = ["irc", "client", "thread-safe"]
|
|
documentation = "http://www.rust-ci.org/aatxe/irc/doc/irc/"
|
|
repository = "https://github.com/aatxe/irc"
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
|
|
default = ["ctcp", "encode", "ssl"]
|
|
ctcp = ["time"]
|
|
encode = ["encoding"]
|
|
ssl = ["openssl"]
|
|
nochanlists = []
|
|
|
|
[dependencies.rustc-serialize]
|
|
rustc-serialize = "~0.2.7"
|
|
|
|
[dependencies.time]
|
|
|
|
time = "~0.1.12"
|
|
optional = true
|
|
|
|
[dependencies.encoding]
|
|
|
|
encoding = "~0.2.18"
|
|
optional = true
|
|
|
|
[dependencies.openssl]
|
|
|
|
openssl = "~0.2.15"
|
|
optional = true
|