rink-rs/Cargo.toml
Tiffany Bennett db3f8d060b
API usability improvements (#184)
* Added helper functions `load_definitions()` and `load_currency()` on
Context to deduplicate code every frontend had to write out
* Added ToSpans impl for `Result<QueryReply, QueryError>` to avoid a
pointless looking match statement
* Added more examples to the API docs
* Fleshed out the API docs a bit more
2024-06-02 15:59:35 -07:00

8 lines
159 B
TOML

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