Adding Travis CI support
This commit is contained in:
parent
c49b66c7e1
commit
ef608490ff
2 changed files with 19 additions and 1 deletions
18
.travis.yml
Normal file
18
.travis.yml
Normal file
|
@ -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
|
|
@ -4,7 +4,7 @@ version = "0.3.0"
|
|||
authors = ["Zach Dziura <zcdziura@gmail.com>"]
|
||||
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"
|
||||
|
|
Loading…
Add table
Reference in a new issue