From bc123ad6c3888ee15e2841ecae21d5cdd098a2a7 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Sun, 15 Oct 2017 02:13:39 +0200 Subject: [PATCH] Add a default 'unstable' feature to CEF I recently moved that default from libservo to ports/servo, which made CEF not have it anymore. The different defaults made `./mach build-cef` after `./mach build` rebuild many libraries (including serde and all of its recursive dependents) and take a long time. --- ports/cef/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ports/cef/Cargo.toml b/ports/cef/Cargo.toml index 21ce2165cac..20693cd8385 100644 --- a/ports/cef/Cargo.toml +++ b/ports/cef/Cargo.toml @@ -16,6 +16,9 @@ opt-level = 3 [features] debugmozjs = ["libservo/debugmozjs"] +default = ["unstable", "default-except-unstable"] +default-except-unstable = [] +unstable = ["libservo/unstable"] [dependencies] compositing = {path = "../../components/compositing"}