[package]
edition = "2021"
name = "ircbot"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An async IRC bot framework for Rust powered by Tokio and procedural macros"
readme = "README.md"
keywords = [
"irc",
"bot",
"async",
"tokio",
"framework",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/chrj/ircbot"
[features]
integration = []
[lib]
name = "ircbot"
path = "src/lib.rs"
[[example]]
name = "basic_bot"
path = "examples/basic_bot.rs"
[[test]]
name = "cron"
path = "tests/cron.rs"
[[test]]
name = "flood_control"
path = "tests/flood_control.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "irc_parsing"
path = "tests/irc_parsing.rs"
[[test]]
name = "keepalive"
path = "tests/keepalive.rs"
[[test]]
name = "trigger_matching"
path = "tests/trigger_matching.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.chrono-tz]
version = "0.10"
[dependencies.cron]
version = "0.15"
[dependencies.futures]
version = "0.3"
[dependencies.irc-proto]
version = "1"
default-features = false
[dependencies.ircbot-macros]
version = "0.1.5"
[dependencies.regex]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.irc]
version = "1"
default-features = false
[dev-dependencies.testcontainers]
version = "0.27"
[target."cfg(unix)".dependencies.libc]
version = "0.2"