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>
36 lines
909 B
TOML
36 lines
909 B
TOML
[package]
|
|
name = "devtools"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "devtools"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
base64 = { workspace = true }
|
|
chrono = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
devtools_traits = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
headers = { workspace = true }
|
|
http = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
net = { path = "../net" }
|
|
net_traits = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_rand = { path = "../rand" }
|
|
servo_url = { path = "../url" }
|
|
uuid = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
chrono = { workspace = true }
|