aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJonathan Davies <jpds@protonmail.com>2023-01-23 22:00:17 +0000
committerJonathan Davies <jpds@protonmail.com>2023-01-26 11:13:11 +0000
commitd3b2a68988b71b46f1a13a3db202fa03ea63849b (patch)
treec33cf413e8b104bbf77ca038bb78734ceef6964b /Cargo.lock
parentb4a1a6a32f3581bdf1ac673066ef3b4ebd0a2fdc (diff)
downloadgarage-d3b2a68988b71b46f1a13a3db202fa03ea63849b.tar.gz
garage-d3b2a68988b71b46f1a13a3db202fa03ea63849b.zip
{garage,util}/Cargo.toml: Updated toml from 0.5 to 0.6.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock47
1 files changed, 45 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ec64d41e..19d7a4e8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2282,6 +2282,15 @@ dependencies = [
]
[[package]]
+name = "nom8"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8"
+dependencies = [
+ "memchr",
+]
+
+[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -3490,6 +3499,15 @@ dependencies = [
]
[[package]]
+name = "serde_spanned"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2c68e921cef53841b8925c2abadd27c9b891d9613bdc43d6b823062866df38e8"
+dependencies = [
+ "serde",
+]
+
+[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -3956,11 +3974,36 @@ dependencies = [
[[package]]
name = "toml"
-version = "0.5.11"
+version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
+checksum = "4fb9d890e4dc9298b70f740f615f2e05b9db37dce531f6b24fb77ac993f9f217"
dependencies = [
"serde",
+ "serde_spanned",
+ "toml_datetime",
+ "toml_edit",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "0.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5"
+dependencies = [
+ "serde",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.18.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "729bfd096e40da9c001f778f5cdecbd2957929a24e10e5883d9392220a751581"
+dependencies = [
+ "indexmap",
+ "nom8",
+ "serde",
+ "serde_spanned",
+ "toml_datetime",
]
[[package]]