commit 6022a26cb8de376a33d443de03cd3d26d906d555
parent 527c75419ded4d76d25ad26d76da11b45c5292bd
Author: Antoine A <>
Date: Wed, 29 Jan 2025 17:33:56 +0100
common: remove unused dependencies
Diffstat:
6 files changed, 5 insertions(+), 65 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
@@ -1484,15 +1484,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
[[package]]
-name = "matchers"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
-dependencies = [
- "regex-automata 0.1.10",
-]
-
-[[package]]
name = "matchit"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1949,17 +1940,8 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
dependencies = [
"aho-corasick",
"memchr",
- "regex-automata 0.4.9",
- "regex-syntax 0.8.5",
-]
-
-[[package]]
-name = "regex-automata"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
-dependencies = [
- "regex-syntax 0.6.29",
+ "regex-automata",
+ "regex-syntax",
]
[[package]]
@@ -1970,17 +1952,11 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
dependencies = [
"aho-corasick",
"memchr",
- "regex-syntax 0.8.5",
+ "regex-syntax",
]
[[package]]
name = "regex-syntax"
-version = "0.6.29"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
-
-[[package]]
-name = "regex-syntax"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
@@ -2561,8 +2537,6 @@ dependencies = [
"thiserror",
"tokio",
"tracing",
- "tracing-subscriber",
- "tracing-test",
"url",
]
@@ -2577,7 +2551,6 @@ dependencies = [
"glob",
"indexmap 2.7.1",
"jiff",
- "rand 0.9.0",
"serde",
"serde_json",
"serde_path_to_error",
@@ -2620,7 +2593,6 @@ dependencies = [
"thiserror",
"tokio",
"tracing",
- "tracing-subscriber",
]
[[package]]
@@ -2634,7 +2606,6 @@ dependencies = [
"sqlx",
"taler-api",
"taler-common",
- "tempfile",
"tokio",
"tracing",
"tracing-subscriber",
@@ -2877,40 +2848,15 @@ version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
dependencies = [
- "matchers",
"nu-ansi-term",
- "once_cell",
- "regex",
"sharded-slab",
"smallvec",
"thread_local",
- "tracing",
"tracing-core",
"tracing-log",
]
[[package]]
-name = "tracing-test"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "557b891436fe0d5e0e363427fc7f217abf9ccd510d5136549847bdcbcd011d68"
-dependencies = [
- "tracing-core",
- "tracing-subscriber",
- "tracing-test-macro",
-]
-
-[[package]]
-name = "tracing-test-macro"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
-dependencies = [
- "quote",
- "syn",
-]
-
-[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
@@ -30,5 +30,4 @@ tempfile = "3.15"
taler-common = { path = "common/taler-common" }
taler-api = { path = "common/taler-api" }
taler-test-utils = { path = "common/taler-test-utils" }
-anyhow = "1"
-rand = "0.9"
-\ No newline at end of file
+anyhow = "1"
+\ No newline at end of file
diff --git a/common/taler-api/Cargo.toml b/common/taler-api/Cargo.toml
@@ -5,7 +5,6 @@ edition = "2021"
[dependencies]
listenfd = "1.0.0"
-tracing-test = "0.2"
dashmap = "6.1"
sqlx = { workspace = true, features = [
"postgres",
@@ -18,7 +17,6 @@ ed25519-dalek = { version = "2.1.1", default-features = false }
tokio = { workspace = true, features = ["signal"] }
serde.workspace = true
tracing.workspace = true
-tracing-subscriber.workspace = true
serde_json.workspace = true
serde_path_to_error.workspace = true
axum.workspace = true
diff --git a/common/taler-common/Cargo.toml b/common/taler-common/Cargo.toml
@@ -7,7 +7,6 @@ edition = "2021"
serde_with = "3.11.0"
glob = "0.3"
indexmap = "2.7"
-rand.workspace = true
tempfile.workspace = true
jiff.workspace = true
serde.workspace = true
diff --git a/common/taler-test-utils/Cargo.toml b/common/taler-test-utils/Cargo.toml
@@ -13,7 +13,6 @@ taler-common.workspace = true
taler-api.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
-tempfile.workspace = true
sqlx = { workspace = true, features = [
"postgres",
"runtime-tokio-native-tls",
diff --git a/taler-magnet-bank/Cargo.toml b/taler-magnet-bank/Cargo.toml
@@ -32,7 +32,6 @@ serde_path_to_error.workspace = true
serde_urlencoded.workspace = true
thiserror.workspace = true
tracing.workspace = true
-tracing-subscriber.workspace = true
tokio.workspace = true
anyhow.workspace = true