mirror of
https://github.com/tiffany352/rink-rs
synced 2024-11-10 05:34:14 +00:00
9d5cb59bbc
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.
8 lines
152 B
TOML
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
|