[package] name = "rustbot" version = "0.1.0" edition = "2021" description = "A modular, dependency-free IRC bot in Rust with a hand-rolled IRC protocol layer" license = "MIT" authors = ["a.srenov"] [[bin]] name = "rustbot" path = "src/main.rs" # The IRC protocol layer is hand-rolled in `src/irc.rs` (modern IRC client # spec: https://modern.ircdocs.horse/). The sole dependency is native-tls for # the optional TLS transport; it wraps the system OpenSSL, so TLS security # fixes arrive through normal OS updates rather than a vendored crypto crate. [dependencies] native-tls = "0.2" [profile.release] lto = true strip = true