Skip to content

Commit

Permalink
Remove old crate_name attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Sep 15, 2014
1 parent 68458d3 commit 35701e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Expand Up @@ -3,8 +3,9 @@ env:
global:
- secure: ffCiAwT3mkRQ57yTyTKUV4nRsnsdDuTSXbwSFpNg/AXLn6KTt35wpp2kbKTUhU4fUikpoKh30+TMiXp1vhc7XSUo/E06JyjccRIE6oXas07NcYhYd0JRlPPWKZU8q33jvFYFB7U63vY/65tGk+wlrWm7NFyqqXwGMuysd7XT1tE=
script:
- (cd phf && cargo test)
- rustdoc -L phf/target/test -L phf/target/test/deps phf/src/lib.rs
- rustdoc phf_mac/src/lib.rs
- (cd phf && cargo test && cargo doc)
- (cd phf_mac && cargo doc)
after_script:
- cp -r phf/target/doc .
- cp -r phf_mac/target/doc .
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
1 change: 0 additions & 1 deletion phf/src/lib.rs
Expand Up @@ -5,7 +5,6 @@
#![doc(html_root_url="http://www.rust-ci.org/sfackler")]
#![warn(missing_doc)]
#![feature(macro_rules)]
#![crate_name="phf"]

use std::fmt;
use std::iter;
Expand Down
1 change: 0 additions & 1 deletion phf_mac/src/lib.rs
Expand Up @@ -3,7 +3,6 @@
//! See the documentation for the `phf` crate for more details.
#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")]
#![feature(plugin_registrar, quote, default_type_params, macro_rules)]
#![crate_name="phf_mac"]

extern crate rand;
extern crate syntax;
Expand Down

0 comments on commit 35701e2

Please sign in to comment.