Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rustup and add Travis #61

Merged
merged 5 commits into from
Jan 31, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sudo: false
language: rust
script:
- cargo build
- cargo test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# string-cache

[![Build Status](https://travis-ci.org/servo/string-cache.svg?branch=master)](https://travis-ci.org/servo/string-cache)

A string interning library for Rust, developed as part of the [Servo](https://github.com/servo/servo) project.
3 changes: 1 addition & 2 deletions macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
#![crate_type="dylib"]

#![feature(plugin_registrar, quote, int_uint, box_syntax)]
#![feature(rustc_private, core, std_misc)]
#![deny(warnings)]
#![allow(unused_imports)] // for quotes
#![allow(unstable)]

extern crate core;
extern crate syntax;
extern crate rustc;

Expand Down
7 changes: 2 additions & 5 deletions shared/repr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@

#![allow(dead_code, unused_imports)]

use core::{mem, raw, intrinsics};
use core::option::Option::{self, Some, None};
use core::ptr::PtrExt;
use core::slice::{AsSlice, SliceExt};
use core::slice::bytes;
use std::{mem, raw, intrinsics};
use std::slice::bytes;

pub use self::UnpackedAtom::{Dynamic, Inline, Static};

Expand Down
3 changes: 0 additions & 3 deletions src/atom/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ macro_rules! bench_all (
mod $name {
#![allow(unused_imports)]

use core::prelude::*;
use collections::vec::Vec;
use test::{Bencher, black_box};
use std::string::ToString;
use std::iter::repeat;
Expand Down Expand Up @@ -190,7 +188,6 @@ macro_rules! bench_rand ( ($name:ident, $len:expr) => (
#[bench]
fn $name(b: &mut Bencher) {
use std::{str, rand};
use std::slice::{AsSlice, SliceExt};
use std::rand::Rng;

let mut gen = rand::weak_rng();
Expand Down
22 changes: 8 additions & 14 deletions src/atom/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,16 @@

#![allow(non_upper_case_globals)]

use core::prelude::*;

use phf::OrderedSet;
use xxhash;

use core::fmt;
use core::iter::RandomAccessIterator;
use core::mem;
use core::ptr;
use core::slice::bytes;
use core::str;
use alloc::heap;
use alloc::boxed::Box;
use collections::string::String;
use std::fmt;
use std::iter::RandomAccessIterator;
use std::mem;
use std::ptr;
use std::slice::bytes;
use std::str;
use std::rt::heap;
use std::cmp::Ordering::{self, Equal};
use std::hash::Hash;
use std::sync::Mutex;
Expand Down Expand Up @@ -294,8 +290,6 @@ mod bench;

#[cfg(test)]
mod tests {
use core::prelude::*;

use std::thread::Thread;
use super::Atom;
use super::repr::{Static, Inline, Dynamic};
Expand Down Expand Up @@ -461,7 +455,7 @@ mod tests {
#[test]
fn assert_sizes() {
// Guard against accidental changes to the sizes of things.
use core::mem;
use std::mem;
assert_eq!(8, mem::size_of::<super::Atom>());
assert_eq!(48, mem::size_of::<super::StringCacheEntry>());
}
Expand Down
7 changes: 1 addition & 6 deletions src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,7 @@

#![macro_escape]

use core::prelude::*;

use alloc::boxed::Box;
use collections::MutableSeq;
use collections::vec::Vec;
use collections::string::String;
use std::MutableSeq;
use sync::Mutex;

#[deriving(PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Show, Encodable)]
Expand Down
12 changes: 2 additions & 10 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,13 @@
#![crate_type = "rlib"]

#![feature(plugin, old_orphan_check)]
#![no_std]
#![feature(core, collections, alloc, hash)]
#![deny(warnings)]
#![allow(unstable)]

#[macro_use]
extern crate core;

extern crate alloc;
extern crate collections;
#![cfg_attr(test, feature(test, std_misc))]

#[cfg(test)]
extern crate test;

extern crate std;

#[plugin] #[no_link]
extern crate phf_mac;
extern crate phf;
Expand Down
5 changes: 2 additions & 3 deletions src/namespace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![experimental="This may move as string-cache becomes less Web-specific."]

use core::prelude::*;
#![unstable(feature = "string_cache_namespace",
reason = "This may move as string-cache becomes less Web-specific.")]

use atom::Atom;

Expand Down