Skip to content

Commit

Permalink
fixed version dependencies rather than *, added coverage status setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanceras committed Oct 21, 2015
1 parent 43ceb3e commit 4fa3038
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Expand Up @@ -10,3 +10,10 @@ before_script:
- "./scripts/setup.sh"
script:
- cargo test

after_success: |
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz && mkdir kcov-master/build && cd kcov-master/build && cmake .. && make &&
sudo make install && cd ../.. &&
kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/codegenta-*
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "codegenta"
version = "0.0.3"
version = "0.0.4"
authors = [ "Jovansonlee Cesar <ivanceras@gmail.com>" ]
license = "MIT"
description = "A model code generator from database table using rustorm ORM"
Expand All @@ -22,13 +22,13 @@ name = "codegenta"
#features = ["sqlite"]

[dependencies.chrono]
version = "*"
version = "0.2.16"
features = ["rustc-serialize"]

[dependencies]
rustc-serialize = "*"
uuid = "*"
time = "*"
rustc-serialize = "0.3.16"
uuid = "0.1.18"
time = "0.1.33"



Expand Down

0 comments on commit 4fa3038

Please sign in to comment.