fix(deps): update rust crate kxio to v5
This commit is contained in:
parent
8eafa876ae
commit
5573bf19f8
2 changed files with 5 additions and 7 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -7,22 +7,18 @@ publish = false # NOTE: Not a CLI tool or a library, so don't release to crates.
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
bon = "3.0"
|
bon = "3.0"
|
||||||
ignore = "0.4"
|
|
||||||
file-format = { version = "0.26", features = ["reader-txt"] }
|
file-format = { version = "0.26", features = ["reader-txt"] }
|
||||||
|
ignore = "0.4"
|
||||||
|
kxio = "5.0"
|
||||||
kxio = "3.1"
|
|
||||||
|
|
||||||
regex = "1.10"
|
regex = "1.10"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tokio = { version = "1.37", features = ["full"] }
|
tokio = { version = "1.37", features = ["full"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert2 = "0.3"
|
assert2 = "0.3"
|
||||||
|
mutants = "0.0"
|
||||||
pretty_assertions = "1.4"
|
pretty_assertions = "1.4"
|
||||||
rstest = "0.24"
|
rstest = "0.24"
|
||||||
|
|
||||||
mutants = "0.0"
|
|
||||||
|
|
||||||
[lints.rust]
|
[lints.rust]
|
||||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|
||||||
|
|
|
@ -35,6 +35,7 @@ async fn run_with_some_invalids() /* -> Result<()> */
|
||||||
|
|
||||||
//then
|
//then
|
||||||
assert!(result.is_err()); // there is an invalid file
|
assert!(result.is_err()); // there is an invalid file
|
||||||
|
net.assert_no_unused_plans();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
|
@ -64,4 +65,5 @@ async fn run_with_no_invalids() {
|
||||||
|
|
||||||
//then
|
//then
|
||||||
assert!(result.is_ok()); // there is an invalid file
|
assert!(result.is_ok()); // there is an invalid file
|
||||||
|
net.assert_no_unused_plans();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue