mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
refactoring with ResourceFetchMetadata implemented deprecated window.timing functionality created ResourceTimingListener trait fixed w3c links in navigation timing updated include.ini to run resource timing tests on ci
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
cargo-features = ["rename-dependency"]
|
|
|
|
[package]
|
|
name = "net_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "net_traits"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
cookie = "0.11"
|
|
embedder_traits = { path = "../embedder_traits" }
|
|
headers-core = "0.0.1"
|
|
headers-ext = "0.0.3"
|
|
http = "0.1"
|
|
hyper = "0.12"
|
|
hyper_serde = "0.9"
|
|
piston_image = {package = "image", version = "0.20"}
|
|
ipc-channel = "0.11"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
|
|
mime = "0.3"
|
|
msg = {path = "../msg"}
|
|
num-traits = "0.2"
|
|
pixels = {path = "../pixels"}
|
|
serde = "1.0"
|
|
servo_arc = {path = "../servo_arc"}
|
|
servo_config = {path = "../config"}
|
|
servo_url = {path = "../url"}
|
|
time = "0.1"
|
|
url = "1.2"
|
|
uuid = {version = "0.7", features = ["v4", "serde"]}
|
|
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
|
|
|
|
[dev-dependencies]
|
|
std_test_override = { path = "../std_test_override" }
|