diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-11-28 16:15:33 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-11-28 16:19:29 +0100 |
commit | eb3652b3c6ac8f0c27f75e259a37f81089911ba6 (patch) | |
tree | 589dbda6c4cb7c98f4e769b5c1e745a9c1201a58 /components/net/lib.rs | |
parent | 66d0a41127a350d162c6a809053290c3da30c7eb (diff) | |
download | servo-eb3652b3c6ac8f0c27f75e259a37f81089911ba6.tar.gz servo-eb3652b3c6ac8f0c27f75e259a37f81089911ba6.zip |
Replace parse-hosts crate with 10 lines of code.
This removes 3927 lines of Rust code in 6 crates from the dependency graph:
parse-hosts, multistr, bow, extra-default, len-trait, and push-trait.
One of these crates doesn’t build in today’s Nightly:
https://github.com/rust-lang/rust/issues/46328
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index c77fce6c509..666e7bdb2d5 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -24,7 +24,6 @@ extern crate mime_guess; extern crate msg; extern crate net_traits; extern crate openssl; -extern crate parse_hosts; extern crate profile_traits; #[macro_use] extern crate serde; extern crate serde_json; |