19 lines
454 B
TOML
19 lines
454 B
TOML
[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
|