forked from servo/servo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
29 lines (27 loc) · 885 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
members = [
"ports/servo",
"ports/libsimpleservo/capi/",
"ports/libsimpleservo/jniapi/",
"ports/libmlservo/",
"tests/unit/*",
]
exclude = [".cargo"]
[profile.release]
opt-level = 3
# Uncomment to profile on Linux:
# debug = true
# lto = false
#[patch.crates-io]
# If you need to temporarily test Servo with a local fork of some upstream
# crate, add that here. Use the form:
#
# <crate> = { path = "/path/to/local/checkout" }
#
# Or for a git dependency:
#
# [patch."https://github.com/servo/<repository>"]
# <crate> = { path = "/path/to/local/checkout" }
[replace]
"https://github.com/servo/webrender#0.60.0" = { git = "https://github.com/szeged/webrender.git", branch="update_wr60"}
"https://github.com/servo/webrender#webrender_api:0.60.0" = { git = "https://github.com/szeged/webrender.git", branch="update_wr60", features = ["ipc"] }