Cargo.toml cleanup (#38426)

Cargo.toml cleanup.

Testing: No tests for Cargo.toml edit.

Signed-off-by: Alex Touchet <26315797+atouchet@users.noreply.github.com>
This commit is contained in:
Alex Touchet 2025-08-02 03:16:09 -07:00 committed by GitHub
parent ee1bfa61ce
commit 7c70d811a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View file

@ -1519,7 +1519,7 @@ dependencies = [
[[package]] [[package]]
name = "content-security-policy" name = "content-security-policy"
version = "0.5.4" version = "0.5.4"
source = "git+https://github.com/servo/rust-content-security-policy/?branch=servo-csp#e8d4883f9a9349e602465f31a780bc6d70b98528" source = "git+https://github.com/servo/rust-content-security-policy?branch=servo-csp#e8d4883f9a9349e602465f31a780bc6d70b98528"
dependencies = [ dependencies = [
"base64 0.22.1", "base64 0.22.1",
"bitflags 2.9.1", "bitflags 2.9.1",

View file

@ -42,7 +42,7 @@ chrono = { version = "0.4", features = ["serde"] }
cipher = { version = "0.4.4", features = ["alloc"] } cipher = { version = "0.4.4", features = ["alloc"] }
compositing_traits = { path = "components/shared/compositing" } compositing_traits = { path = "components/shared/compositing" }
constellation_traits = { path = "components/shared/constellation" } constellation_traits = { path = "components/shared/constellation" }
content-security-policy = { git = "https://github.com/servo/rust-content-security-policy/", branch = "servo-csp", features = ["serde"] } content-security-policy = { git = "https://github.com/servo/rust-content-security-policy", branch = "servo-csp", features = ["serde"] }
cookie = { package = "cookie", version = "0.18" } cookie = { package = "cookie", version = "0.18" }
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
cssparser = { version = "0.35", features = ["serde"] } cssparser = { version = "0.35", features = ["serde"] }
@ -87,8 +87,9 @@ indexmap = { version = "2.10.0", features = ["std"] }
ipc-channel = "0.20" ipc-channel = "0.20"
itertools = "0.14" itertools = "0.14"
js = { package = "mozjs", git = "https://github.com/servo/mozjs" } js = { package = "mozjs", git = "https://github.com/servo/mozjs" }
keyboard-types = { version = "0.8.0", features = ["webdriver", "serde"] } keyboard-types = { version = "0.8.0", features = ["serde", "webdriver"] }
kurbo = { version = "0.11.3", features = ["euclid"] } kurbo = { version = "0.11.3", features = ["euclid"] }
layout_api = { path = "components/shared/layout" }
libc = "0.2" libc = "0.2"
log = "0.4" log = "0.4"
mach2 = "0.4" mach2 = "0.4"
@ -122,7 +123,6 @@ resvg = "0.45.0"
rustls = { version = "0.23", default-features = false, features = ["logging", "std", "tls12"] } rustls = { version = "0.23", default-features = false, features = ["logging", "std", "tls12"] }
rustls-pemfile = "2.0" rustls-pemfile = "2.0"
rustls-pki-types = "1.12" rustls-pki-types = "1.12"
layout_api = { path = "components/shared/layout" }
script_traits = { path = "components/shared/script" } script_traits = { path = "components/shared/script" }
selectors = { git = "https://github.com/servo/stylo", branch = "2025-07-01" } selectors = { git = "https://github.com/servo/stylo", branch = "2025-07-01" }
serde = "1.0.219" serde = "1.0.219"
@ -134,7 +134,7 @@ servo-media-gstreamer = { git = "https://github.com/servo/media" }
servo-tracing = { path = "components/servo_tracing" } servo-tracing = { path = "components/servo_tracing" }
servo_arc = { git = "https://github.com/servo/stylo", branch = "2025-07-01" } servo_arc = { git = "https://github.com/servo/stylo", branch = "2025-07-01" }
smallbitvec = "2.6.0" smallbitvec = "2.6.0"
smallvec = { version = "1.15", features = ["union", "serde"] } smallvec = { version = "1.15", features = ["serde", "union"] }
static_assertions = "1.1" static_assertions = "1.1"
string_cache = "0.8" string_cache = "0.8"
string_cache_codegen = "0.5" string_cache_codegen = "0.5"
@ -226,8 +226,8 @@ codegen-units = 1
# #
# html5ever = { path = "../html5ever/html5ever" } # html5ever = { path = "../html5ever/html5ever" }
# markup5ever = { path = "../html5ever/markup5ever" } # markup5ever = { path = "../html5ever/markup5ever" }
# xml5ever = { path = "../html5ever/xml5ever" }
# web_atoms = { path = "../html5ever/web_atoms" } # web_atoms = { path = "../html5ever/web_atoms" }
# xml5ever = { path = "../html5ever/xml5ever" }
# #
# Or for Stylo: # Or for Stylo:
# #
@ -254,4 +254,4 @@ codegen-units = 1
# <crate> = { path = "/path/to/local/checkout" } # <crate> = { path = "/path/to/local/checkout" }
# #
# [patch."https://github.com/servo/rust-content-security-policy"] # [patch."https://github.com/servo/rust-content-security-policy"]
# content-security-policy = { path = "../rust-content-security-policy/" } # content-security-policy = { path = "../rust-content-security-policy" }