mirror of
https://github.com/servo/servo.git
synced 2025-08-13 17:35:36 +01:00
This change replaces our custom `panic` / `unwrap` lint with the one from clippy. This rule as not properly applied in servoshell, so this change fixes some clippy errors raised by the new configuration. Testing: This change removes the tidy tests for the custom lints, but otherwise the behavior is tested as part of clippy itself. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "compositing"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "compositing"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
tracing = ["dep:tracing"]
|
|
webxr = ["dep:webxr"]
|
|
|
|
[lints.clippy]
|
|
unwrap_used = "deny"
|
|
panic = "deny"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
bincode = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
compositing_traits = { workspace = true }
|
|
constellation_traits = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
dpi = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
gleam = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
pixels = { path = "../pixels" }
|
|
profile_traits = { workspace = true }
|
|
servo_allocator = { path = "../allocator" }
|
|
servo_config = { path = "../config" }
|
|
servo_geometry = { path = "../geometry" }
|
|
servo-tracing = { workspace = true }
|
|
stylo_traits = { workspace = true }
|
|
timers = { path = "../timers" }
|
|
tracing = { workspace = true, optional = true }
|
|
webrender = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webxr = { path = "../webxr", optional = true }
|
|
wr_malloc_size_of = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
surfman = { workspace = true }
|