mirror of
https://github.com/servo/servo
synced 2026-04-26 17:45:19 +02:00
* Remove packages that were moved to external repo
* Add workspace dependencies pointing to 2023-06-14 branch
* Fix servo-tidy.toml errors
* Update commit to include #31346
* Update commit to include servo/stylo#2
* Move css-properties.json lookup to target/doc/stylo
* Remove dependency on vendored mako in favour of pypi dependency
This also removes etc/ci/generate_workflow.py, which has been unused
since at least 9e71bd6a70.
* Add temporary code to debug Windows test failures
* Fix failures on Windows due to custom target dir
* Update commit to include servo/stylo#3
* Fix license in tests/unit/style/build.rs
* Document how to build with local Stylo in Cargo.toml
79 lines
2.3 KiB
TOML
79 lines
2.3 KiB
TOML
[package]
|
|
name = "net"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
autotests = false # Inhibit lookup for tests/*.rs without [[test]] sections
|
|
|
|
[lib]
|
|
name = "net"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
async-recursion = "0.3.2"
|
|
async-tungstenite = { workspace = true }
|
|
base64 = { workspace = true }
|
|
brotli = "3"
|
|
bytes = "1"
|
|
content-security-policy = { workspace = true }
|
|
cookie_rs = { package = "cookie", version = "0.12" }
|
|
crossbeam-channel = { workspace = true }
|
|
data-url = { workspace = true }
|
|
devtools_traits = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
flate2 = "1"
|
|
futures = { version = "0.3", package = "futures" }
|
|
generic-array = "0.14"
|
|
headers = { workspace = true }
|
|
http = { workspace = true }
|
|
hyper = { workspace = true, features = ["client", "http1", "http2", "tcp", "stream"] }
|
|
hyper-rustls = { workspace = true }
|
|
hyper_serde = { workspace = true }
|
|
imsz = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
libflate = "0.1"
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
mime = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
msg = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
percent-encoding = { workspace = true }
|
|
pixels = { path = "../pixels" }
|
|
profile_traits = { workspace = true }
|
|
rayon = { workspace = true }
|
|
rustls = { workspace = true }
|
|
rustls-pemfile = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_allocator = { path = "../allocator" }
|
|
servo_arc = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_url = { path = "../url" }
|
|
sha2 = "0.10"
|
|
time = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread"] }
|
|
tokio-rustls = { workspace = true }
|
|
tokio-stream = "0.1"
|
|
tungstenite = { workspace = true }
|
|
url = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
webpki-roots = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "0.3", features = ["compat"] }
|
|
tokio-test = "0.4"
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
hyper = { workspace = true, features = ["full"] }
|
|
|
|
[[test]]
|
|
name = "main"
|
|
path = "tests/main.rs"
|