mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01:00
Part of #39418. See that PR for a full description. Moves: - `read_json_from_file` - `write_json_to_file` - `IpcSendResult` - `IpcSend` Renames: - `CoreResourceThreadPool` to `ThreadPool` (shorter and more descriptive, as we use it for more than the core resource thread now) Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[package]
|
|
name = "base"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "base"
|
|
path = "lib.rs"
|
|
test = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
crossbeam-channel = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../../config" }
|
|
time = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
mach2 = { workspace = true }
|
|
|
|
[target.'cfg(all(unix, not(any(target_os = "macos", target_os = "ios"))))'.dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-sys = { workspace = true, features = ["Win32_System_Performance"] }
|