diff options
author | Prabhjyot Singh Sodhi <prabhjyotsingh95@gmail.com> | 2016-01-08 17:32:17 +0530 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2016-04-30 21:42:50 -0400 |
commit | cfde40e22530211aa0853685b9d7bae75aa57f9e (patch) | |
tree | 4e008d6f78b1a0d7f86514f76f64f7c7d782a39b /components/script/lib.rs | |
parent | 8db0367301b5ad5ab5ea4704d57755c166cfd5de (diff) | |
download | servo-cfde40e22530211aa0853685b9d7bae75aa57f9e.tar.gz servo-cfde40e22530211aa0853685b9d7bae75aa57f9e.zip |
Support form submission of multipart/form-data
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index dde2063cfc3..05700431c3d 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -51,6 +51,8 @@ extern crate js; extern crate libc; #[macro_use] extern crate log; +#[macro_use] +extern crate mime; extern crate msg; extern crate net_traits; extern crate num_traits; |