rink-rs/Cargo.toml
Tiffany Bennett 9d5cb59bbc
Fix the irc bot (#169)
This has been broken for many years. I didn't have much motivation to
fix it because I wasn't actively using irc anymore.

Most of the libraries in the time in between have changed. I have to
rewrite the bot from scratch.

Unfortunately, the async ecosystem in rust is split down the middle with
tokio vs async-std. `irc` uses tokio, `rink-sandbox` uses async-std, so
they aren't compatible. I don't have the motivation to fix this yet, so
for now the IRC bot has no sandboxing support.
2024-05-27 19:04:54 -07:00

8 lines
152 B
TOML

[workspace]
members = ["core", "rink-js", "sandbox", "cli", "irc"]
default-members = ["cli"]
[profile.release]
strip = true
opt-level = "z"
lto = true