diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-11-30 16:38:07 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-12-03 14:31:54 -0800 |
| commit | acc5e32e53d313a890a07cb0b693ce8df5bc94ce (patch) | |
| tree | 2ac4923981b4e5e96562aa5525eadab1ccf4f834 /src/libextra | |
| parent | 4252a24ae1236207a99c1d313d4b1b1eda3ebb58 (diff) | |
| download | rust-acc5e32e53d313a890a07cb0b693ce8df5bc94ce.tar.gz rust-acc5e32e53d313a890a07cb0b693ce8df5bc94ce.zip | |
Register new snapshots
Diffstat (limited to 'src/libextra')
| -rw-r--r-- | src/libextra/lib.rs | 2 | ||||
| -rw-r--r-- | src/libextra/unicode.rs | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/libextra/lib.rs b/src/libextra/lib.rs index ce504d8bf6f..198362492a5 100644 --- a/src/libextra/lib.rs +++ b/src/libextra/lib.rs @@ -32,7 +32,6 @@ Rust extras are part of the standard Rust distribution. #[comment = "Rust extras"]; #[license = "MIT/ASL2"]; -#[crate_type = "lib"]; // NOTE: remove after stage0 snapshot #[crate_type = "rlib"]; #[crate_type = "dylib"]; @@ -40,7 +39,6 @@ Rust extras are part of the standard Rust distribution. #[deny(non_camel_case_types)]; #[deny(missing_doc)]; -#[allow(attribute_usage)]; // NOTE: remove after the next snapshot use std::str::{StrSlice, OwnedStr}; diff --git a/src/libextra/unicode.rs b/src/libextra/unicode.rs index cd8c9cd6ab5..094a4b02a24 100644 --- a/src/libextra/unicode.rs +++ b/src/libextra/unicode.rs @@ -161,7 +161,7 @@ pub mod icu { use unicode::icu::*; // #[link_name = "icuuc"] - #[link_args = "-licuuc"] + #[link(name = "icuuc")] extern { pub fn u_hasBinaryProperty(c: UChar32, which: UProperty) -> UBool; pub fn u_isdigit(c: UChar32) -> UBool; |
