aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Davies <jpds@protonmail.com>2023-01-23 22:27:44 +0000
committerJonathan Davies <jpds@protonmail.com>2023-01-26 11:13:11 +0000
commit20c1cdf662a0b5368a8020526f43e08baedfedaa (patch)
treebbac080996e91fb8e622c70b88bcec79bdc9183a
parentf952e37ba772b9286ba814ddb29f17d0ec7731c6 (diff)
downloadgarage-20c1cdf662a0b5368a8020526f43e08baedfedaa.tar.gz
garage-20c1cdf662a0b5368a8020526f43e08baedfedaa.zip
Cargo.toml: Loosen tracing dependency to just 0.1.
-rw-r--r--src/api/Cargo.toml2
-rw-r--r--src/block/Cargo.toml2
-rw-r--r--src/db/Cargo.toml2
-rw-r--r--src/garage/Cargo.toml2
-rw-r--r--src/model/Cargo.toml2
-rw-r--r--src/rpc/Cargo.toml2
-rw-r--r--src/table/Cargo.toml2
-rw-r--r--src/util/Cargo.toml2
-rw-r--r--src/web/Cargo.toml2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml
index 2ea7e4cf..24c48604 100644
--- a/src/api/Cargo.toml
+++ b/src/api/Cargo.toml
@@ -29,7 +29,7 @@ err-derive = "0.3"
hex = "0.4"
hmac = "0.12"
idna = "0.3"
-tracing = "0.1.30"
+tracing = "0.1"
md-5 = "0.10"
nom = "7.1"
sha2 = "0.10"
diff --git a/src/block/Cargo.toml b/src/block/Cargo.toml
index 48bcd181..a7e8bc2c 100644
--- a/src/block/Cargo.toml
+++ b/src/block/Cargo.toml
@@ -25,7 +25,7 @@ arc-swap = "1.5"
async-trait = "0.1.7"
bytes = "1.0"
hex = "0.4"
-tracing = "0.1.30"
+tracing = "0.1"
rand = "0.8"
async-compression = { version = "0.3", features = ["tokio", "zstd"] }
diff --git a/src/db/Cargo.toml b/src/db/Cargo.toml
index f329cc59..751e329e 100644
--- a/src/db/Cargo.toml
+++ b/src/db/Cargo.toml
@@ -19,7 +19,7 @@ required-features = ["cli"]
[dependencies]
err-derive = "0.3"
hexdump = "0.1"
-tracing = "0.1.30"
+tracing = "0.1"
heed = { version = "0.11", default-features = false, features = ["lmdb"], optional = true }
rusqlite = { version = "0.27", optional = true }
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml
index 4edc3b91..f938f356 100644
--- a/src/garage/Cargo.toml
+++ b/src/garage/Cargo.toml
@@ -36,7 +36,7 @@ bytesize = "1.1"
timeago = "0.4"
parse_duration = "2.1"
hex = "0.4"
-tracing = { version = "0.1.30" }
+tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rand = "0.8"
async-trait = "0.1.7"
diff --git a/src/model/Cargo.toml b/src/model/Cargo.toml
index 7c1e242a..d1c7cd29 100644
--- a/src/model/Cargo.toml
+++ b/src/model/Cargo.toml
@@ -26,7 +26,7 @@ blake2 = "0.10"
err-derive = "0.3"
hex = "0.4"
base64 = "0.21"
-tracing = "0.1.30"
+tracing = "0.1"
rand = "0.8"
zstd = { version = "0.12", default-features = false }
diff --git a/src/rpc/Cargo.toml b/src/rpc/Cargo.toml
index e9a0929a..22b15679 100644
--- a/src/rpc/Cargo.toml
+++ b/src/rpc/Cargo.toml
@@ -20,7 +20,7 @@ arc-swap = "1.0"
bytes = "1.0"
gethostname = "0.2"
hex = "0.4"
-tracing = "0.1.30"
+tracing = "0.1"
rand = "0.8"
sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
diff --git a/src/table/Cargo.toml b/src/table/Cargo.toml
index 3911c945..a8127f50 100644
--- a/src/table/Cargo.toml
+++ b/src/table/Cargo.toml
@@ -25,7 +25,7 @@ arc-swap = "1.0"
bytes = "1.0"
hex = "0.4"
hexdump = "0.1"
-tracing = "0.1.30"
+tracing = "0.1"
rand = "0.8"
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml
index cbda43c0..abeccbbd 100644
--- a/src/util/Cargo.toml
+++ b/src/util/Cargo.toml
@@ -27,7 +27,7 @@ hexdump = "0.1"
xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3"] }
hex = "0.4"
lazy_static = "1.4"
-tracing = "0.1.30"
+tracing = "0.1"
rand = "0.8"
sha2 = "0.10"
diff --git a/src/web/Cargo.toml b/src/web/Cargo.toml
index dbc5e5fb..19eaed17 100644
--- a/src/web/Cargo.toml
+++ b/src/web/Cargo.toml
@@ -20,7 +20,7 @@ garage_util = { version = "0.8.1", path = "../util" }
garage_table = { version = "0.8.1", path = "../table" }
err-derive = "0.3"
-tracing = "0.1.30"
+tracing = "0.1"
percent-encoding = "2.1.0"
futures = "0.3"