mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01:00
Cargo.toml cleanups. Mostly ordering fixes. Testing: No tests for Cargo.toml edits. --------- Signed-off-by: Alex Touchet <26315797+atouchet@users.noreply.github.com>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "net_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "net_traits"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
compositing_traits = { workspace = true }
|
|
content-security-policy = { workspace = true }
|
|
cookie = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
data-url = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
headers = { workspace = true }
|
|
http = { workspace = true }
|
|
hyper-util = { workspace = true }
|
|
hyper_serde = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
mime = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
pixels = { path = "../../pixels" }
|
|
profile_traits = { path = "../profile" }
|
|
rustc-hash = { workspace = true }
|
|
rustls-pki-types = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_arc = { workspace = true }
|
|
servo_rand = { path = "../../rand" }
|
|
servo_url = { path = "../../url" }
|
|
url = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
embedder_traits = { workspace = true, features = ["baked-default-resources"] }
|