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]
|
||||
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)'] }
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue