diff --git a/Cargo.lock b/Cargo.lock index 37e6104..5e616ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -915,7 +915,7 @@ dependencies = [ "screenstub-qemu", "screenstub-uinput", "screenstub-x", - "serde_yaml 0.8.26", + "serde_yaml 0.9.19", "tokio", ] @@ -1051,14 +1051,15 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.8.26" +version = "0.9.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" +checksum = "f82e6c8c047aa50a7328632d067bcae6ef38772a79e28daf32f735e0e4f3dd10" dependencies = [ "indexmap", + "itoa", "ryu", "serde", - "yaml-rust", + "unsafe-libyaml", ] [[package]] @@ -1273,6 +1274,12 @@ version = "0.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74c1aa4511c38276c548406f0b1f5f8b793f000cfb51e18f278a102abd057e81" +[[package]] +name = "unsafe-libyaml" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad2024452afd3874bf539695e04af6732ba06517424dbf958fdb16a01f3bef6c" + [[package]] name = "void" version = "1.0.2" diff --git a/Cargo.toml b/Cargo.toml index ebcc3a0..7b2beda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ futures = { version = "^0.3.5", features = ["thread-pool"] } clap = "^3.1.12" env_logger = "^0.9.0" log = "^0.4.1" -serde_yaml = "^0.8.13" +serde_yaml = "^0.9.0" enumflags2 = "^0.6.4" result = "^1.0.0" ctrlc = { version = "^3.1.9", features = ["termination"] }