summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2024-03-03 18:54:16 +0200
committerLars Wirzenius <liw@liw.fi>2024-03-03 18:54:16 +0200
commit56e6a88f4556739e8a6c25d24edf7d9540750298 (patch)
tree024c1fc2e6e4e0f3eca069f7edafac4ffe456b0c
parentd028ef52a27d4b02c32daa5062bfb83485f63e7a (diff)
downloadobnam2-56e6a88f4556739e8a6c25d24edf7d9540750298.tar.gz
chore: update dependency on serde_yaml
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
-rw-r--r--Cargo.lock55
-rw-r--r--Cargo.toml2
2 files changed, 7 insertions, 50 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 245e96f..b44d666 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -674,7 +674,7 @@ dependencies = [
"futures-sink",
"futures-util",
"http",
- "indexmap 2.2.5",
+ "indexmap",
"slab",
"tokio",
"tokio-util",
@@ -683,12 +683,6 @@ dependencies = [
[[package]]
name = "hashbrown"
-version = "0.12.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-
-[[package]]
-name = "hashbrown"
version = "0.14.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
@@ -703,7 +697,7 @@ version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
dependencies = [
- "hashbrown 0.14.3",
+ "hashbrown",
]
[[package]]
@@ -881,22 +875,12 @@ dependencies = [
[[package]]
name = "indexmap"
-version = "1.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
-dependencies = [
- "autocfg",
- "hashbrown 0.12.3",
-]
-
-[[package]]
-name = "indexmap"
version = "2.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
dependencies = [
"equivalent",
- "hashbrown 0.14.3",
+ "hashbrown",
]
[[package]]
@@ -966,12 +950,6 @@ dependencies = [
]
[[package]]
-name = "linked-hash-map"
-version = "0.5.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
-
-[[package]]
name = "linux-raw-sys"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1023,7 +1001,7 @@ dependencies = [
"serde",
"serde-value",
"serde_json",
- "serde_yaml 0.9.32",
+ "serde_yaml",
"thiserror",
"thread-id",
"typemap-ors",
@@ -1166,7 +1144,7 @@ dependencies = [
"rusqlite",
"serde",
"serde_json",
- "serde_yaml 0.8.26",
+ "serde_yaml",
"sha2",
"spmc",
"tempfile",
@@ -1717,23 +1695,11 @@ dependencies = [
[[package]]
name = "serde_yaml"
-version = "0.8.26"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
-dependencies = [
- "indexmap 1.9.3",
- "ryu",
- "serde",
- "yaml-rust",
-]
-
-[[package]]
-name = "serde_yaml"
version = "0.9.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fd075d994154d4a774f95b51fb96bdc2832b0ea48425c92546073816cda1f2f"
dependencies = [
- "indexmap 2.2.5",
+ "indexmap",
"itoa",
"ryu",
"serde",
@@ -2519,15 +2485,6 @@ dependencies = [
]
[[package]]
-name = "yaml-rust"
-version = "0.4.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
-dependencies = [
- "linked-hash-map",
-]
-
-[[package]]
name = "zerocopy"
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index c086f05..a0f277c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,7 +31,7 @@ rpassword = "5"
rusqlite = "0.28"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
-serde_yaml = "0.8"
+serde_yaml = "0.9"
sha2 = "0.10"
spmc = "0.3.0"
tempfile = "3"