diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 537efd1..cf13461 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,8 +17,8 @@ test:stable: script: - rustc --version && cargo --version # Print version info for debugging - cargo build --all - - cargo test --all --verbose - # - cargo test --all --verbose --jobs 1 + # - cargo test --all --verbose + - cargo test --all --verbose --jobs 1 # Use cargo to test the project test:nightly: @@ -28,8 +28,8 @@ test:nightly: script: - rustc --version && cargo --version # Print version info for debugging - cargo build --all - - cargo test --all --verbose - # - cargo test --verbose --jobs 1 + # - cargo test --all --verbose + - cargo test --all --verbose --jobs 1 # - cargo bench allow_failure: true @@ -52,5 +52,5 @@ test:clippy: - which rustfmt || cargo install clippy script: - rustc --version && cargo --version - - cargo clippy + - cargo clippy --all allow_failure: true diff --git a/hammond-cli/Cargo.toml b/hammond-cli/Cargo.toml index fa8503d..49303aa 100644 --- a/hammond-cli/Cargo.toml +++ b/hammond-cli/Cargo.toml @@ -4,11 +4,11 @@ version = "0.1.0" authors = ["Jordan Petridis "] [dependencies] -log = "0.3.8" -loggerv = "0.3.0" -structopt = "0.1.0" -structopt-derive = "0.1.0" -error-chain = "0.11.0" +log = "0.3" +loggerv = "0.3" +structopt = "0.1" +structopt-derive = "0.1" +error-chain = "0.11" hammond-data = {path = "../hammond-data"} hammond-downloader = {path = "../hammond-downloader"} diff --git a/hammond-data/Cargo.toml b/hammond-data/Cargo.toml index 1e7b2a6..2f904cb 100644 --- a/hammond-data/Cargo.toml +++ b/hammond-data/Cargo.toml @@ -4,20 +4,20 @@ version = "0.1.0" authors = ["Jordan Petridis "] [dependencies] -rfc822_sanitizer = "0.3.0" -rayon = "0.8.2" -hyper = "0.11.2" -reqwest = "0.7.3" -error-chain = "0.11.0" -log = "0.3.8" -diesel = { version = "0.16.0", features = ["sqlite"] } -diesel_codegen = { version = "0.16.0", features = ["sqlite"] } -xdg = "2.1.0" -lazy_static = "0.2.8" -rss = "1.1.0" +rfc822_sanitizer = "0.3" +rayon = "0.8" +hyper = "0.11" +reqwest = "0.7" +error-chain = "0.11" +log = "0.3" +diesel = { version = "0.16", features = ["sqlite"] } +diesel_codegen = { version = "0.16", features = ["sqlite"] } +xdg = "2.1" +lazy_static = "0.2" +rss = "1.1" # overwrite diesel dependancy that disables a feature rss depends upon dotenv = "*" [dev-dependencies] -tempdir = "0.3.5" -rand = "0.3.16" +tempdir = "0.3" +rand = "0.3" diff --git a/hammond-downloader/Cargo.toml b/hammond-downloader/Cargo.toml index 0c95f69..da4952b 100644 --- a/hammond-downloader/Cargo.toml +++ b/hammond-downloader/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Jordan Petridis "] [dependencies] hammond-data = {path = "../hammond-data"} -error-chain = "0.11.0" -log = "0.3.8" -reqwest = "0.7.3" -hyper = "0.11.2" -diesel = { version = "0.16.0", features = ["sqlite"] } -rss = { version = "1.1.0", features = ["from_url"]} +error-chain = "0.11" +log = "0.3" +reqwest = "0.7" +hyper = "0.11" +diesel = { version = "0.16", features = ["sqlite"] } +rss = { version = "1.1", features = ["from_url"]} dotenv = "*" diff --git a/hammond-gtk/Cargo.toml b/hammond-gtk/Cargo.toml index 7d0674a..dec53cd 100644 --- a/hammond-gtk/Cargo.toml +++ b/hammond-gtk/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Jordan Petridis "] [dependencies] -gtk = { version = "0.2.0", features = ["v3_22"]} -glib = "0.3.0" -gdk-pixbuf = "0.2.0" +gtk = { version = "0.2", features = ["v3_22"]} +glib = "0.3" +gdk-pixbuf = "0.2" hammond-data = {path = "../hammond-data"} \ No newline at end of file