-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |