diff --git a/Cargo.lock b/Cargo.lock index eb0d011061..813b90e95e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1038,7 +1038,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a1d8af896b707212cd0e99c112a78c9497dd32994192a463ed2f7419d29bd8c6" dependencies = [ "serde", - "thiserror 2.0.12", + "thiserror 2.0.14", "toml 0.8.23", ] @@ -1433,7 +1433,7 @@ dependencies = [ "spdx", "tar", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.14", "tikv-jemallocator", "tokio", "tokio-postgres", @@ -1493,7 +1493,7 @@ dependencies = [ "serde", "serde_json", "sha2", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", "unicode-xid", @@ -1547,7 +1547,7 @@ dependencies = [ "serde", "serde_json", "test-case", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", "tracing-subscriber", @@ -1575,7 +1575,7 @@ dependencies = [ "reqwest", "secrecy", "serde", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", "tracing-subscriber", @@ -1620,7 +1620,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", ] @@ -1663,7 +1663,7 @@ dependencies = [ "serde", "serde_json", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", "tracing-subscriber", @@ -1687,7 +1687,7 @@ dependencies = [ "serde", "serde_json", "tar", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", "tracing-subscriber", @@ -1739,7 +1739,7 @@ dependencies = [ "serde", "serde_json", "sha2", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", ] @@ -1758,7 +1758,7 @@ dependencies = [ "sentry-core", "serde", "serde_json", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", ] @@ -4035,7 +4035,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", "url", @@ -4208,7 +4208,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc" dependencies = [ "memchr", - "thiserror 2.0.12", + "thiserror 2.0.14", "ucd-trie", ] @@ -4528,7 +4528,7 @@ dependencies = [ "lazy_static", "memchr", "parking_lot", - "thiserror 2.0.12", + "thiserror 2.0.14", ] [[package]] @@ -4573,7 +4573,7 @@ dependencies = [ "rustc-hash 2.1.0", "rustls 0.23.21", "socket2 0.5.10", - "thiserror 2.0.12", + "thiserror 2.0.14", "tokio", "tracing", ] @@ -4592,7 +4592,7 @@ dependencies = [ "rustls 0.23.21", "rustls-pki-types", "slab", - "thiserror 2.0.12", + "thiserror 2.0.14", "tinyvec", "tracing", "web-time", @@ -5289,7 +5289,7 @@ dependencies = [ "rand 0.9.2", "serde", "serde_json", - "thiserror 2.0.12", + "thiserror 2.0.14", "time", "url", "uuid", @@ -5462,7 +5462,7 @@ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ "num-bigint", "num-traits", - "thiserror 2.0.12", + "thiserror 2.0.14", "time", ] @@ -5756,11 +5756,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.12" +version = "2.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +checksum = "0b0949c3a6c842cbde3f1686d6eea5a010516deb7085f79db747562d4102f41e" dependencies = [ - "thiserror-impl 2.0.12", + "thiserror-impl 2.0.14", ] [[package]] @@ -5776,9 +5776,9 @@ dependencies = [ [[package]] name = "thiserror-impl" -version = "2.0.12" +version = "2.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" +checksum = "cc5b44b4ab9c2fdd0e0512e6bece8388e214c0749f5862b114cc5b7a25daf227" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 3cac0f3fb5..14d62e5a53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -124,7 +124,7 @@ sha2 = "=0.10.9" spdx = "=0.10.9" tar = "=0.4.44" tempfile = "=3.20.0" -thiserror = "=2.0.12" +thiserror = "=2.0.14" tikv-jemallocator = { version = "=0.6.0", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] } tokio = { version = "=1.47.1", features = ["net", "signal", "io-std", "io-util", "rt-multi-thread", "macros", "process"]} tokio-postgres = "=0.7.13" diff --git a/crates/crates_io_database/Cargo.toml b/crates/crates_io_database/Cargo.toml index f331538884..7e6de943b8 100644 --- a/crates/crates_io_database/Cargo.toml +++ b/crates/crates_io_database/Cargo.toml @@ -22,7 +22,7 @@ semver = { version = "=1.0.26", features = ["serde"] } serde = { version = "=1.0.219", features = ["derive"] } serde_json = "=1.0.142" sha2 = "=0.10.9" -thiserror = "=2.0.12" +thiserror = "=2.0.14" tracing = "=0.1.41" unicode-xid = "=0.2.6" utoipa = { version = "=5.4.0", features = ["chrono"] } diff --git a/crates/crates_io_docs_rs/Cargo.toml b/crates/crates_io_docs_rs/Cargo.toml index 9b3c2dfd2c..2de060fe4d 100644 --- a/crates/crates_io_docs_rs/Cargo.toml +++ b/crates/crates_io_docs_rs/Cargo.toml @@ -18,7 +18,7 @@ http = "=1.3.1" mockall = { version = "=0.13.1", optional = true } reqwest = { version = "=0.12.22", features = ["json"] } serde = { version = "=1.0.219", features = ["derive"] } -thiserror = "=2.0.12" +thiserror = "=2.0.14" tracing = "=0.1.41" url = "=2.5.4" diff --git a/crates/crates_io_github/Cargo.toml b/crates/crates_io_github/Cargo.toml index 4f6de30683..6ebfbeec2b 100644 --- a/crates/crates_io_github/Cargo.toml +++ b/crates/crates_io_github/Cargo.toml @@ -17,7 +17,7 @@ mockall = { version = "=0.13.1", optional = true } oauth2 = { version = "=5.0.0", default-features = false } reqwest = { version = "=0.12.22", features = ["json"] } serde = { version = "=1.0.219", features = ["derive"] } -thiserror = "=2.0.12" +thiserror = "=2.0.14" tracing = "=0.1.41" [dev-dependencies] diff --git a/crates/crates_io_smoke_test/Cargo.toml b/crates/crates_io_smoke_test/Cargo.toml index 5faebb3579..1a2e41fbba 100644 --- a/crates/crates_io_smoke_test/Cargo.toml +++ b/crates/crates_io_smoke_test/Cargo.toml @@ -19,7 +19,7 @@ semver = { version = "=1.0.26", features = ["serde"] } serde = { version = "=1.0.219", features = ["derive"] } serde_json = "=1.0.142" tempfile = "=3.20.0" -thiserror = "=2.0.12" +thiserror = "=2.0.14" tokio = { version = "=1.47.1", features = ["fs", "macros", "process", "rt-multi-thread"]} tracing = "=0.1.41" tracing-subscriber = { version = "=0.3.19", features = ["env-filter"] } diff --git a/crates/crates_io_tarball/Cargo.toml b/crates/crates_io_tarball/Cargo.toml index 8ac507b164..49b2eabce5 100644 --- a/crates/crates_io_tarball/Cargo.toml +++ b/crates/crates_io_tarball/Cargo.toml @@ -17,7 +17,7 @@ flate2 = { version = "=1.1.2", optional = true } serde = { version = "=1.0.219", features = ["derive"] } serde_json = "=1.0.142" tar = { version = "=0.4.44", optional = true } -thiserror = "=2.0.12" +thiserror = "=2.0.14" tracing = "=0.1.41" tokio = { version = "=1.47.1", features = ["io-util", "macros", "rt-multi-thread"] } async-compression = { version = "=0.4.27", default-features = false, features = ["gzip", "tokio"] } diff --git a/crates/crates_io_trustpub/Cargo.toml b/crates/crates_io_trustpub/Cargo.toml index b25c0c5f13..b43ec51ebc 100644 --- a/crates/crates_io_trustpub/Cargo.toml +++ b/crates/crates_io_trustpub/Cargo.toml @@ -24,7 +24,7 @@ secrecy = "=0.10.3" serde = { version = "=1.0.219", features = ["derive"] } serde_json = { version = "=1.0.142", optional = true } sha2 = "=0.10.9" -thiserror = "=2.0.12" +thiserror = "=2.0.14" tokio = { version = "=1.47.1", features = ["sync"] } tracing = "=0.1.41" diff --git a/crates/crates_io_worker/Cargo.toml b/crates/crates_io_worker/Cargo.toml index d3c59fdc69..f99fc243fd 100644 --- a/crates/crates_io_worker/Cargo.toml +++ b/crates/crates_io_worker/Cargo.toml @@ -15,7 +15,7 @@ futures-util = "=0.3.31" sentry-core = { version = "=0.42.0", features = ["client"] } serde = { version = "=1.0.219", features = ["derive"] } serde_json = "=1.0.142" -thiserror = "=2.0.12" +thiserror = "=2.0.14" tokio = { version = "=1.47.1", features = ["rt", "time"]} tracing = "=0.1.41"