diff options
author | Gilles Leblanc <gilles.leblanc@gmail.com> | 2015-03-23 21:19:55 -0400 |
---|---|---|
committer | Gilles Leblanc <gilles.leblanc@gmail.com> | 2015-04-03 13:38:10 -0400 |
commit | ba36a108c1f5e5acc74fec3294203ebd5c1a13a0 (patch) | |
tree | 84d425ed51f1c9c8e3fc8dad8cb31f8b2f7c6ebf /components/script/lib.rs | |
parent | 74f8c0eeb714fb7ca7964b36f1b82849e8a345ee (diff) | |
download | servo-ba36a108c1f5e5acc74fec3294203ebd5c1a13a0.tar.gz servo-ba36a108c1f5e5acc74fec3294203ebd5c1a13a0.zip |
Split out shared networking code into net_traits crate
Fixes #4476
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 44ac6f1856c..d7b39848322 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -39,7 +39,7 @@ extern crate hyper; extern crate js; extern crate libc; extern crate msg; -extern crate net; +extern crate net_traits; extern crate "rustc-serialize" as rustc_serialize; extern crate time; extern crate canvas; |