mirror of
https://github.com/servo/servo
synced 2026-04-28 10:27:40 +02:00
Referer policy strict-origin and strict-origin-when-cross-origin changes have been implemented. Relevant unit test cases have been added. Enum for RefererPolicy has been added to hyper codebase and v 0.9.11 of hyper contains these changes. This commit also contains changes related to upgrade of hyper from v0.9.10 to v0.9.11. Other dependencies changed are rayon, utils, num_cpus.
29 lines
635 B
TOML
29 lines
635 B
TOML
[package]
|
|
name = "stylo_tests"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "stylo_tests"
|
|
path = "lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
app_units = "0.3"
|
|
cssparser = {version = "0.7"}
|
|
env_logger = "0.3"
|
|
euclid = "0.10.1"
|
|
lazy_static = "0.2"
|
|
libc = "0.2"
|
|
log = {version = "0.3.5", features = ["release_max_level_info"]}
|
|
num_cpus = "1.1.0"
|
|
parking_lot = "0.3"
|
|
selectors = "0.14"
|
|
url = "1.2"
|
|
style_traits = {path = "../../../components/style_traits"}
|
|
geckoservo = {path = "../../../ports/geckolib"}
|
|
style = {path = "../../../components/style", features = ["gecko"]}
|