Skip to content

Commit

Permalink
Merge pull request #51 from ChrisRega/0.5-series-update-json-diff
Browse files Browse the repository at this point in the history
Bump json-diff to 0.4.1 - fix compile warning
  • Loading branch information
rohdealx committed Mar 18, 2024
2 parents acd814e + f6a4725 commit 9104d1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
license = "MIT"
authors = ["Volume Graphics GmbH"]
exclude = ["tests/pdf", "tests/integ", "tests/html", "target", "tests/csv", ".github", "test_report"]
keywords = ["diff" ,"compare", "csv", "image", "difference"]
keywords = ["diff", "compare", "csv", "image", "difference"]
categories = ["filesystem"]
default-run = "havocompare"

Expand All @@ -19,7 +19,7 @@ path = "src/print_args.rs"


[dependencies]
clap = {version= "4.4", features=["derive"]}
clap = { version = "4.4", features = ["derive"] }
chrono = "0.4"
serde = "1.0"
serde_yaml = "0.9"
Expand All @@ -33,7 +33,7 @@ tracing = "0.1"
tracing-subscriber = "0.3"
serde_json = "1.0"
glob = "0.3"
test-log = {version="0.2", features=["trace"]}
test-log = { version = "0.2", features = ["trace"] }
strsim = "0.11"
itertools = "0.12"
tera = "1.19"
Expand All @@ -48,10 +48,10 @@ tempfile = "3.8"
fs_extra = "1.3"
opener = "0.6"
anyhow = "1.0"
json_diff_ng = {version = "0.4"}
json_diff_ng = { version = "0.4" }


[dev-dependencies]
env_logger = "0.11"
tracing = {version = "0.1", default-features = false}
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ pub fn validate_config(config_file: impl AsRef<Path>) -> bool {
#[cfg(test)]
mod tests {
use super::*;
use crate::image::ImageCompareConfig;
#[test]
fn folder_not_found_is_false() {
let rule = Rule {
Expand Down

0 comments on commit 9104d1e

Please sign in to comment.