30 lines
637 B
TOML
30 lines
637 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["cove", "cove-*"]
|
|
|
|
[workspace.package]
|
|
version = "0.8.1"
|
|
edition = "2021"
|
|
|
|
[workspace.dependencies]
|
|
crossterm = "0.27.0"
|
|
parking_lot = "0.12.1"
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
|
serde_either = "0.2.1"
|
|
thiserror = "1.0.56"
|
|
|
|
[workspace.dependencies.toss]
|
|
git = "https://github.com/Garmelon/toss.git"
|
|
tag = "v0.2.2"
|
|
|
|
[workspace.lints]
|
|
rust.unsafe_code = "forbid"
|
|
rust.future_incompatible = "warn"
|
|
rust.rust_2018_idioms = "warn"
|
|
rust.unused = "warn"
|
|
rust.noop_method_call = "warn"
|
|
rust.single_use_lifetimes = "warn"
|
|
clippy.use_self = "warn"
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|