rust bot
This commit is contained in:
commit
05c004d32d
6 changed files with 1062 additions and 0 deletions
19
Cargo.toml
Normal file
19
Cargo.toml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue