Auto merge of #12263 - servo:stable-geckolib, r=nox

Make geckolib possible to build on stable Rust

<!-- Please describe your changes on the following line: -->

More for https://github.com/servo/servo/issues/11815

r? @nox

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [ ] These changes fix #__ (github issue number if applicable).

<!-- Either: -->
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because _____

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12263)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-07-05 15:04:42 -07:00 committed by GitHub
commit 3d557b6f25
6 changed files with 28 additions and 14 deletions

View file

@ -18,6 +18,7 @@ default = ["servo_features"]
# recompiled when building both Servo and geckolib in the same source tree.
servo_features = [
"heapsize",
"selectors/unstable",
"style/servo",
"time",
"url/query_encoding",
@ -36,7 +37,7 @@ lazy_static = "0.2"
libc = "0.2"
log = {version = "0.3.5", features = ["release_max_level_info"]}
num_cpus = "0.2.2"
selectors = {version = "0.6", features = ["unstable"]}
selectors = "0.6"
smallvec = "0.1"
string_cache = {version = "0.2.20", features = ["unstable"]}
style = {path = "../../components/style", features = ["gecko"]}