fix(deps): update rust crate kxio to v5
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 4m34s
Test / build (map[name:stable]) (push) Successful in 5m12s

This commit is contained in:
Paul Campbell 2025-01-04 20:17:45 +00:00
parent 8eafa876ae
commit 5573bf19f8
2 changed files with 5 additions and 7 deletions

View file

@ -7,22 +7,18 @@ publish = false # NOTE: Not a CLI tool or a library, so don't release to crates.
[dependencies]
anyhow = "1.0"
bon = "3.0"
ignore = "0.4"
file-format = { version = "0.26", features = ["reader-txt"] }
kxio = "3.1"
ignore = "0.4"
kxio = "5.0"
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.37", features = ["full"] }
[dev-dependencies]
assert2 = "0.3"
mutants = "0.0"
pretty_assertions = "1.4"
rstest = "0.24"
mutants = "0.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }

View file

@ -35,6 +35,7 @@ async fn run_with_some_invalids() /* -> Result<()> */
//then
assert!(result.is_err()); // there is an invalid file
net.assert_no_unused_plans();
}
#[tokio::test]
@ -64,4 +65,5 @@ async fn run_with_no_invalids() {
//then
assert!(result.is_ok()); // there is an invalid file
net.assert_no_unused_plans();
}