27 lines
701 B
TOML
27 lines
701 B
TOML
[package]
|
|
name = "platform"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
shared = { path = "../shared" }
|
|
tracing.workspace = true
|
|
anyhow.workspace = true
|
|
winit.workspace = true
|
|
softbuffer.workspace = true
|
|
|
|
# Cannot use workspace lints because we need to allow unsafe_code for softbuffer
|
|
[lints.rust]
|
|
unsafe_code = "allow"
|
|
|
|
[lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|
|
correctness = { level = "deny", priority = -1 }
|
|
suspicious = { level = "deny", priority = -1 }
|
|
perf = { level = "warn", priority = -1 }
|
|
complexity = { level = "warn", priority = -1 }
|
|
style = { level = "warn", priority = -1 }
|
|
module_name_repetitions = "allow"
|
|
missing_errors_doc = "allow"
|
|
missing_panics_doc = "allow"
|