Skip to content

Commit

Permalink
Remove explicit dependency on serde_derive
Browse files Browse the repository at this point in the history
  • Loading branch information
nox committed Sep 27, 2019
1 parent 99ef781 commit 1b57558
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions components/config/Cargo.toml
Expand Up @@ -20,8 +20,7 @@ getopts = "0.2.11"
lazy_static = "1"
log = "0.4"
num_cpus = "1.1.0"
serde = "1.0"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
servo_geometry = {path = "../geometry"}
servo_url = {path = "../url"}
Expand Down
2 changes: 1 addition & 1 deletion components/config/tests/prefs.rs
Expand Up @@ -3,7 +3,7 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */

#[macro_use]
extern crate serde_derive;
extern crate serde;

use servo_config::basedir;
use servo_config::pref_util::Preferences;
Expand Down

0 comments on commit 1b57558

Please sign in to comment.