From ef608490ffcc906866b91f78ce06cace6c8f0841 Mon Sep 17 00:00:00 2001 From: Zach Dziura Date: Tue, 10 May 2016 17:45:42 -0400 Subject: [PATCH] Adding Travis CI support --- .travis.yml | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d168d46 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: rust +rust: +- nightly +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 +addons: + apt: + packages: + - libcurl4-openssl-dev + - libelf-dev + - libdw-dev \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 74e3be1..c8082ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.3.0" authors = ["Zach Dziura "] description = "A cryptographically secure prime number generator" repository = "https://github.com/zcdziura/pumpkin" -homepages = "https://zcdziura.github.io/pumpkin/pumpkin" +homepage = "https://zcdziura.github.io/pumpkin/pumpkin" keywords = ["prime", "number", "cryptography", "generator"] license = "Unlicense/MIT" readme = "README.md"