mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Automatically provide a resource reader for tests Fix #20710 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [ ] `./mach build-geckolib` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #20710 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20718) <!-- Reviewable:end -->
58 lines
1.4 KiB
TOML
58 lines
1.4 KiB
TOML
[package]
|
|
name = "net"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
autotests = false # Inhibit lookup for tests/*.rs without [[test]] sections
|
|
|
|
[lib]
|
|
name = "net"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
base64 = "0.6"
|
|
brotli = "1.0.6"
|
|
cookie = "0.10"
|
|
compositing = {path = "../compositing"}
|
|
devtools_traits = {path = "../devtools_traits"}
|
|
embedder_traits = { path = "../embedder_traits" }
|
|
flate2 = "1"
|
|
hyper = "0.10"
|
|
hyper_serde = "0.8"
|
|
hyper-openssl = "0.2.2"
|
|
immeta = "0.3.6"
|
|
ipc-channel = "0.10"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
|
|
matches = "0.1"
|
|
mime = "0.2.1"
|
|
mime_guess = "1.8.0"
|
|
msg = {path = "../msg"}
|
|
net_traits = {path = "../net_traits"}
|
|
openssl = "0.9"
|
|
profile_traits = {path = "../profile_traits"}
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
servo_allocator = {path = "../allocator"}
|
|
servo_arc = {path = "../servo_arc"}
|
|
servo_config = {path = "../config"}
|
|
servo_url = {path = "../url"}
|
|
servo-websocket = { version = "0.21", default-features = false, features = ["sync"] }
|
|
threadpool = "1.0"
|
|
time = "0.1.17"
|
|
unicase = "1.4.0"
|
|
url = "1.2"
|
|
uuid = {version = "0.6", features = ["v4"]}
|
|
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
|
|
|
|
[dev-dependencies]
|
|
embedder_traits = { path = "../embedder_traits", features = ["tests"] }
|
|
|
|
[[test]]
|
|
name = "main"
|
|
path = "tests/main.rs"
|