aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 069fd75fc96b689800cdaf1f8d3980d7cd1368cf (plain) (blame)
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/",
    "tests/unit/*",
]
default-members = [
    "ports/servo",
    "ports/libsimpleservo/",
    "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" }