diff options
author | Jack Moffitt <jack@metajack.im> | 2014-08-02 21:41:10 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2014-08-02 21:41:10 -0600 |
commit | 3805bfd24bd768038c5045256f9516866406855c (patch) | |
tree | 2e2ee3ede2b6ff61d36ea3bf06a53fc38f321f4c /src/components/script/script.rs | |
parent | 0a852d5116b5540d8aac7eed6d68b8399a1592bd (diff) | |
parent | b91e6f30e063cbcea4ffd750da8385ce448de797 (diff) | |
download | servo-3805bfd24bd768038c5045256f9516866406855c.tar.gz servo-3805bfd24bd768038c5045256f9516866406855c.zip |
Merge pull request #2984 from servo/rustup-20140716
Upgrade Rust.
Diffstat (limited to 'src/components/script/script.rs')
-rw-r--r-- | src/components/script/script.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/components/script/script.rs b/src/components/script/script.rs index 9d04b49fc40..f07646c4ff6 100644 --- a/src/components/script/script.rs +++ b/src/components/script/script.rs @@ -2,15 +2,13 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![crate_id = "github.com/mozilla/servo#script:0.1"] -#![crate_type = "lib"] -#![crate_type = "dylib"] +#![crate_name = "script"] #![crate_type = "rlib"] #![comment = "The Servo Parallel Browser Project"] #![license = "MPL"] -#![feature(globs, macro_rules, struct_variant, phase)] +#![feature(globs, macro_rules, struct_variant, phase, unsafe_destructor)] #![feature(phase)] |