This commit is contained in:
Jean Chevronnet 2026-07-28 14:29:34 +00:00
commit 05c004d32d
No known key found for this signature in database
GPG key ID: 439666D63A9477E4
6 changed files with 1062 additions and 0 deletions

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[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"
# Intentionally dependency-free. The IRC protocol layer lives in `src/irc.rs`
# and follows the modern IRC client spec: https://modern.ircdocs.horse/
[dependencies]
[profile.release]
lto = true
strip = true