Updated dependancies.
This commit is contained in:
parent
3fe3776b32
commit
1c508798c9
@ -17,8 +17,8 @@ test:stable:
|
|||||||
script:
|
script:
|
||||||
- rustc --version && cargo --version # Print version info for debugging
|
- rustc --version && cargo --version # Print version info for debugging
|
||||||
- cargo build --all
|
- cargo build --all
|
||||||
- cargo test --all --verbose
|
# - cargo test --all --verbose
|
||||||
# - cargo test --all --verbose --jobs 1
|
- cargo test --all --verbose --jobs 1
|
||||||
|
|
||||||
# Use cargo to test the project
|
# Use cargo to test the project
|
||||||
test:nightly:
|
test:nightly:
|
||||||
@ -28,8 +28,8 @@ test:nightly:
|
|||||||
script:
|
script:
|
||||||
- rustc --version && cargo --version # Print version info for debugging
|
- rustc --version && cargo --version # Print version info for debugging
|
||||||
- cargo build --all
|
- cargo build --all
|
||||||
- cargo test --all --verbose
|
# - cargo test --all --verbose
|
||||||
# - cargo test --verbose --jobs 1
|
- cargo test --all --verbose --jobs 1
|
||||||
# - cargo bench
|
# - cargo bench
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|
||||||
@ -52,5 +52,5 @@ test:clippy:
|
|||||||
- which rustfmt || cargo install clippy
|
- which rustfmt || cargo install clippy
|
||||||
script:
|
script:
|
||||||
- rustc --version && cargo --version
|
- rustc --version && cargo --version
|
||||||
- cargo clippy
|
- cargo clippy --all
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|||||||
@ -4,11 +4,11 @@ version = "0.1.0"
|
|||||||
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "0.3.8"
|
log = "0.3"
|
||||||
loggerv = "0.3.0"
|
loggerv = "0.3"
|
||||||
structopt = "0.1.0"
|
structopt = "0.1"
|
||||||
structopt-derive = "0.1.0"
|
structopt-derive = "0.1"
|
||||||
error-chain = "0.11.0"
|
error-chain = "0.11"
|
||||||
hammond-data = {path = "../hammond-data"}
|
hammond-data = {path = "../hammond-data"}
|
||||||
hammond-downloader = {path = "../hammond-downloader"}
|
hammond-downloader = {path = "../hammond-downloader"}
|
||||||
|
|
||||||
|
|||||||
@ -4,20 +4,20 @@ version = "0.1.0"
|
|||||||
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rfc822_sanitizer = "0.3.0"
|
rfc822_sanitizer = "0.3"
|
||||||
rayon = "0.8.2"
|
rayon = "0.8"
|
||||||
hyper = "0.11.2"
|
hyper = "0.11"
|
||||||
reqwest = "0.7.3"
|
reqwest = "0.7"
|
||||||
error-chain = "0.11.0"
|
error-chain = "0.11"
|
||||||
log = "0.3.8"
|
log = "0.3"
|
||||||
diesel = { version = "0.16.0", features = ["sqlite"] }
|
diesel = { version = "0.16", features = ["sqlite"] }
|
||||||
diesel_codegen = { version = "0.16.0", features = ["sqlite"] }
|
diesel_codegen = { version = "0.16", features = ["sqlite"] }
|
||||||
xdg = "2.1.0"
|
xdg = "2.1"
|
||||||
lazy_static = "0.2.8"
|
lazy_static = "0.2"
|
||||||
rss = "1.1.0"
|
rss = "1.1"
|
||||||
# overwrite diesel dependancy that disables a feature rss depends upon
|
# overwrite diesel dependancy that disables a feature rss depends upon
|
||||||
dotenv = "*"
|
dotenv = "*"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempdir = "0.3.5"
|
tempdir = "0.3"
|
||||||
rand = "0.3.16"
|
rand = "0.3"
|
||||||
|
|||||||
@ -5,10 +5,10 @@ authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hammond-data = {path = "../hammond-data"}
|
hammond-data = {path = "../hammond-data"}
|
||||||
error-chain = "0.11.0"
|
error-chain = "0.11"
|
||||||
log = "0.3.8"
|
log = "0.3"
|
||||||
reqwest = "0.7.3"
|
reqwest = "0.7"
|
||||||
hyper = "0.11.2"
|
hyper = "0.11"
|
||||||
diesel = { version = "0.16.0", features = ["sqlite"] }
|
diesel = { version = "0.16", features = ["sqlite"] }
|
||||||
rss = { version = "1.1.0", features = ["from_url"]}
|
rss = { version = "1.1", features = ["from_url"]}
|
||||||
dotenv = "*"
|
dotenv = "*"
|
||||||
|
|||||||
@ -4,7 +4,7 @@ version = "0.1.0"
|
|||||||
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gtk = { version = "0.2.0", features = ["v3_22"]}
|
gtk = { version = "0.2", features = ["v3_22"]}
|
||||||
glib = "0.3.0"
|
glib = "0.3"
|
||||||
gdk-pixbuf = "0.2.0"
|
gdk-pixbuf = "0.2"
|
||||||
hammond-data = {path = "../hammond-data"}
|
hammond-data = {path = "../hammond-data"}
|
||||||
Loading…
Reference in New Issue
Block a user