gecko-dev/servo/Cargo.toml
Simon Sapin d5d9f72094 servo: Merge #17823 - Upgrade to rustc 1.20.0-nightly (504328a31 2017-07-21) (from servo:rustup); r=Manishearth
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

Source-Repo: https://github.com/servo/servo
Source-Revision: d8b3f9bc5c2837ca55ce474be91bf0f5e111ff71

--HG--
extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear
extra : subtree_revision : 164995919e7102424e5c7030f845d147fb60df87
2017-07-21 21:47:51 -07:00

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" }