Skip to content

Commit

Permalink
Updated Ci and documentation config
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimundi committed Aug 3, 2015
1 parent 0460832 commit 73df714
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 27 deletions.
26 changes: 18 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
language: rust
rust:
- nightly
- beta
- stable
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
after_success:
- travis-cargo --only stable doc-upload
env:
global:
- secure: M9/ZDZMaLRBlM5uzmbQQEClBzy7aoaiSz6UVjepXsH9Q1+9bIO8WVAS8Pi2ywkSv+W7EUCkQNKx+zNt9jIkNb366dQxf8/cbhQPnJ9xpleo5CkA3Iul1aXGMusQU9IDDtaTuj0k0FUhiLxPaq/T4uogQ/QZGUypmKM8oRe13N1A=
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
- cp -r ./target/doc ./doc
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
- secure: YXu24LptjeYirjWYjWGsMT2m3mB7LvQATE6TVo7VEUXv8GYoy2ORIHD83PeImxC93MmZ01QeUezRzuCW51ZcK92VnNSBttlF60SvIX18VsJrV92tsAhievFstqYQ+fB8DIuQ8noU0jPz7GpI+R9dlTRSImAqWOnVIghA+Wzz7Js=
24 changes: 5 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,12 @@
[package]

name = "lazy_static"
version = "0.1.12"
authors = [ "Marvin Löbel <[email protected]>" ]
version = "0.1.13"
authors = ["Marvin Löbel <[email protected]>"]
license = "MIT"

# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = "A macro for declaring lazily evaluated statics in Rust."

# These URLs point to more information about the repository
documentation = "http://rust-ci.org/Kimundi/lazy-static.rs/doc/lazy_static/"
repository = "https://github.com/Kimundi/lazy-static.rs"

# This points to a file in the repository (relative to this Cargo.toml). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"
documentation = "http://kimundi.github.io/lazy-static.rs/lazy_static/index.html"

# This is a small list of keywords used to categorize and search for this
# package.
repository = "https://github.com/Kimundi/lazy-static.rs"
keywords = ["macro", "lazy", "static"]

# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
# licenses. Multiple licenses can be separated with a `/`
license = "MIT"

0 comments on commit 73df714

Please sign in to comment.