aboutsummaryrefslogtreecommitdiff
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
parentb4a1a6a32f3581bdf1ac673066ef3b4ebd0a2fdc (diff)
downloadgarage-d3b2a68988b71b46f1a13a3db202fa03ea63849b.tar.gz
garage-d3b2a68988b71b46f1a13a3db202fa03ea63849b.zip
{garage,util}/Cargo.toml: Updated toml from 0.5 to 0.6.
-rw-r--r--Cargo.lock47
-rw-r--r--src/garage/Cargo.toml2
-rw-r--r--src/util/Cargo.toml2
3 files changed, 47 insertions, 4 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]]
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml
index 6c7fd688..d9f5ccc0 100644
--- a/src/garage/Cargo.toml
+++ b/src/garage/Cargo.toml
@@ -45,7 +45,7 @@ sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
serde_bytes = "0.11"
structopt = { version = "0.3", default-features = false }
-toml = "0.5"
+toml = "0.6"
futures = "0.3"
futures-util = "0.3"
diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml
index 1017b1ce..33580a43 100644
--- a/src/util/Cargo.toml
+++ b/src/util/Cargo.toml
@@ -35,7 +35,7 @@ chrono = "0.4"
rmp-serde = "0.15"
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
serde_json = "1.0"
-toml = "0.5"
+toml = "0.6"
futures = "0.3"
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }