compositing: Remove unused dependency. (#38179)

There are no uses of `net` within the `compositing` crate.

Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
Josh Matthews 2025-07-20 12:05:31 -04:00 committed by GitHub
parent 20386d9854
commit b8a6600e9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

1
Cargo.lock generated
View file

@ -1377,7 +1377,6 @@ dependencies = [
"ipc-channel", "ipc-channel",
"libc", "libc",
"log", "log",
"net",
"pixels", "pixels",
"profile_traits", "profile_traits",
"servo-tracing", "servo-tracing",

View file

@ -31,12 +31,12 @@ gleam = { workspace = true }
ipc-channel = { workspace = true } ipc-channel = { workspace = true }
libc = { workspace = true } libc = { workspace = true }
log = { workspace = true } log = { workspace = true }
net = { path = "../net" }
pixels = { path = "../pixels" } pixels = { path = "../pixels" }
profile_traits = { workspace = true } profile_traits = { workspace = true }
servo_allocator = { path = "../allocator" } servo_allocator = { path = "../allocator" }
servo_config = { path = "../config" } servo_config = { path = "../config" }
servo_geometry = { path = "../geometry" } servo_geometry = { path = "../geometry" }
servo-tracing = { workspace = true }
stylo_traits = { workspace = true } stylo_traits = { workspace = true }
timers = { path = "../timers" } timers = { path = "../timers" }
tracing = { workspace = true, optional = true } tracing = { workspace = true, optional = true }
@ -44,7 +44,6 @@ webrender = { workspace = true }
webrender_api = { workspace = true } webrender_api = { workspace = true }
webxr = { path = "../webxr", optional = true } webxr = { path = "../webxr", optional = true }
wr_malloc_size_of = { workspace = true } wr_malloc_size_of = { workspace = true }
servo-tracing = { workspace = true }
[dev-dependencies] [dev-dependencies]
surfman = { workspace = true } surfman = { workspace = true }