From 7d6738d64a192059199136746a23e1ee17fb86c5 Mon Sep 17 00:00:00 2001 From: Peter Glotfelty Date: Sat, 11 Feb 2017 22:51:53 -0800 Subject: [PATCH] Fixed the Travis script --- .travis.yml | 4 +++- strum/Cargo.toml | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6e09135..f61a824 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,6 @@ rust: - nightly matrix: allow_failures: - - rust: nightly \ No newline at end of file + - rust: nightly + +script: "./travis.sh" \ No newline at end of file diff --git a/strum/Cargo.toml b/strum/Cargo.toml index 12a86e0..583ff14 100644 --- a/strum/Cargo.toml +++ b/strum/Cargo.toml @@ -8,9 +8,12 @@ description = "Helpful macros for working with enums and strings" keywords = ["enum", "string", "macros", "proc-macros"] categories = ["development-tools::procedural-macro-helpers", "parsing"] -documentation = "https://github.com/Peternator7/strum" +documentation = "https://docs.rs/strum/badge.svg" homepage = "https://github.com/Peternator7/strum" readme = "../README.md" [dev-dependencies] -strum_macros = { git = "https://github.com/Peternator7/strum" } \ No newline at end of file +strum_macros = { git = "https://github.com/Peternator7/strum" } + +[badges] +travis-ci = { repository = "Peternator7/strum" } \ No newline at end of file