mirror of
https://github.com/servo/servo
synced 2026-05-15 03:16:47 +02:00
and cargo 0.21.0-nightly (ffab51954 2017-07-18). The latter adds support for the `[patch]` section of `Cargo.toml`: http://doc.crates.io/manifest.html#the-patch-section http://doc.crates.io/specifying-dependencies.html#overriding-dependencies
22 lines
399 B
TOML
22 lines
399 B
TOML
[workspace]
|
|
members = [
|
|
"ports/cef",
|
|
"ports/geckolib",
|
|
"ports/servo",
|
|
]
|
|
|
|
[profile.dev]
|
|
codegen-units = 4
|
|
|
|
[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" }
|