diff --git a/Cargo.lock b/Cargo.lock index 7bebcc7..b8bf44f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,158 @@ # It is not intended for manual editing. version = 4 +[[package]] +name = "actix-codec" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" +dependencies = [ + "bitflags", + "bytes", + "futures-core", + "futures-sink", + "memchr", + "pin-project-lite", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "actix-http" +version = "3.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44dfe5c9e0004c623edc65391dfd51daa201e7e30ebd9c9bedf873048ec32bc2" +dependencies = [ + "actix-codec", + "actix-rt", + "actix-service", + "actix-utils", + "base64", + "bitflags", + "bytes", + "bytestring", + "derive_more", + "encoding_rs", + "foldhash", + "futures-core", + "http 0.2.12", + "httparse", + "httpdate", + "itoa", + "language-tags", + "local-channel", + "mime", + "percent-encoding", + "pin-project-lite", + "rand 0.9.0", + "sha1", + "smallvec", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "actix-router" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" +dependencies = [ + "bytestring", + "cfg-if", + "http 0.2.12", + "regex-lite", + "serde", + "tracing", +] + +[[package]] +name = "actix-rt" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208" +dependencies = [ + "futures-core", + "tokio", +] + +[[package]] +name = "actix-server" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502" +dependencies = [ + "actix-rt", + "actix-service", + "actix-utils", + "futures-core", + "futures-util", + "mio", + "socket2", + "tokio", + "tracing", +] + +[[package]] +name = "actix-service" +version = "2.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f" +dependencies = [ + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "actix-utils" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" +dependencies = [ + "local-waker", + "pin-project-lite", +] + +[[package]] +name = "actix-web" +version = "4.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea" +dependencies = [ + "actix-codec", + "actix-http", + "actix-router", + "actix-rt", + "actix-server", + "actix-service", + "actix-utils", + "bytes", + "bytestring", + "cfg-if", + "derive_more", + "encoding_rs", + "foldhash", + "futures-core", + "futures-util", + "impl-more", + "itoa", + "language-tags", + "log", + "mime", + "once_cell", + "pin-project-lite", + "regex-lite", + "serde", + "serde_json", + "serde_urlencoded", + "smallvec", + "socket2", + "time", + "tracing", + "url", +] + [[package]] name = "addr2line" version = "0.24.2" @@ -210,7 +362,7 @@ dependencies = [ "axum-core", "bytes", "futures-util", - "http", + "http 1.3.1", "http-body", "http-body-util", "itoa", @@ -236,7 +388,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http", + "http 1.3.1", "http-body", "http-body-util", "mime", @@ -339,6 +491,15 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3c8f83209414aacf0eeae3cf730b18d6981697fba62f200fcfb92b9f082acba" +[[package]] +name = "bytestring" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f" +dependencies = [ + "bytes", +] + [[package]] name = "cc" version = "1.2.16" @@ -548,6 +709,27 @@ dependencies = [ "powerfmt", ] +[[package]] +name = "derive_more" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "unicode-xid", +] + [[package]] name = "digest" version = "0.10.7" @@ -651,6 +833,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "form_urlencoded" version = "1.2.1" @@ -808,7 +996,7 @@ dependencies = [ "ctrlc", "futures", "gix", - "http", + "http 1.3.1", "human-errors", "log", "parse_link_header", @@ -884,7 +1072,7 @@ dependencies = [ "regex", "signal-hook", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -897,7 +1085,7 @@ dependencies = [ "gix-date", "gix-utils", "itoa", - "thiserror 2.0.6", + "thiserror", "winnow 0.7.7", ] @@ -912,7 +1100,7 @@ dependencies = [ "gix-object", "gix-worktree-stream", "jiff", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -928,7 +1116,7 @@ dependencies = [ "gix-trace", "kstring", "smallvec", - "thiserror 2.0.6", + "thiserror", "unicode-bom", ] @@ -938,7 +1126,7 @@ version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1db9765c69502650da68f0804e3dc2b5f8ccc6a2d104ca6c85bc40700d37540" dependencies = [ - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -947,7 +1135,7 @@ version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b1f1d8764958699dc764e3f727cef280ff4d1bd92c107bbf8acd85b30c1bd6f" dependencies = [ - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -973,7 +1161,7 @@ dependencies = [ "gix-chunk", "gix-hash", "memmap2", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -992,7 +1180,7 @@ dependencies = [ "memchr", "once_cell", "smallvec", - "thiserror 2.0.6", + "thiserror", "unicode-bom", "winnow 0.7.7", ] @@ -1007,7 +1195,7 @@ dependencies = [ "bstr", "gix-path", "libc", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1024,7 +1212,7 @@ dependencies = [ "gix-sec", "gix-trace", "gix-url", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1037,7 +1225,7 @@ dependencies = [ "itoa", "jiff", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1061,7 +1249,7 @@ dependencies = [ "gix-traverse", "gix-worktree", "imara-diff", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1081,7 +1269,7 @@ dependencies = [ "gix-trace", "gix-utils", "gix-worktree", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1097,7 +1285,7 @@ dependencies = [ "gix-path", "gix-ref", "gix-sec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1118,7 +1306,7 @@ dependencies = [ "once_cell", "parking_lot", "prodash", - "thiserror 2.0.6", + "thiserror", "walkdir", ] @@ -1140,7 +1328,7 @@ dependencies = [ "gix-trace", "gix-utils", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1154,7 +1342,7 @@ dependencies = [ "gix-features", "gix-path", "gix-utils", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1178,7 +1366,7 @@ dependencies = [ "faster-hex", "gix-features", "sha1-checked", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1230,7 +1418,7 @@ dependencies = [ "memmap2", "rustix", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1241,7 +1429,7 @@ checksum = "570f8b034659f256366dc90f1a24924902f20acccd6a15be96d44d1269e7a796" dependencies = [ "gix-tempfile", "gix-utils", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1253,7 +1441,7 @@ dependencies = [ "bstr", "gix-actor", "gix-date", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1269,7 +1457,7 @@ dependencies = [ "gix-object", "gix-revwalk", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1289,7 +1477,7 @@ dependencies = [ "gix-validate", "itoa", "smallvec", - "thiserror 2.0.6", + "thiserror", "winnow 0.7.7", ] @@ -1311,7 +1499,7 @@ dependencies = [ "gix-quote", "parking_lot", "tempfile", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1331,7 +1519,7 @@ dependencies = [ "memmap2", "parking_lot", "smallvec", - "thiserror 2.0.6", + "thiserror", "uluru", ] @@ -1344,7 +1532,7 @@ dependencies = [ "bstr", "faster-hex", "gix-trace", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1356,7 +1544,7 @@ dependencies = [ "bstr", "faster-hex", "gix-trace", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1370,7 +1558,7 @@ dependencies = [ "gix-validate", "home", "once_cell", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1385,7 +1573,7 @@ dependencies = [ "gix-config-value", "gix-glob", "gix-path", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1398,7 +1586,7 @@ dependencies = [ "gix-config-value", "parking_lot", "rustix", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1423,7 +1611,7 @@ dependencies = [ "gix-transport", "gix-utils", "maybe-async", - "thiserror 2.0.6", + "thiserror", "winnow 0.7.7", ] @@ -1435,7 +1623,7 @@ checksum = "4a375a75b4d663e8bafe3bf4940a18a23755644c13582fa326e99f8f987d83fd" dependencies = [ "bstr", "gix-utils", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1455,7 +1643,7 @@ dependencies = [ "gix-utils", "gix-validate", "memmap2", - "thiserror 2.0.6", + "thiserror", "winnow 0.7.7", ] @@ -1470,7 +1658,7 @@ dependencies = [ "gix-revision", "gix-validate", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1488,7 +1676,7 @@ dependencies = [ "gix-object", "gix-revwalk", "gix-trace", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1503,7 +1691,7 @@ dependencies = [ "gix-hashtable", "gix-object", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1527,7 +1715,7 @@ dependencies = [ "bstr", "gix-hash", "gix-lock", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1550,7 +1738,7 @@ dependencies = [ "gix-pathspec", "gix-worktree", "portable-atomic", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1565,7 +1753,7 @@ dependencies = [ "gix-pathspec", "gix-refspec", "gix-url", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1606,7 +1794,7 @@ dependencies = [ "gix-sec", "gix-url", "reqwest", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1623,7 +1811,7 @@ dependencies = [ "gix-object", "gix-revwalk", "smallvec", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1636,7 +1824,7 @@ dependencies = [ "gix-features", "gix-path", "percent-encoding", - "thiserror 2.0.6", + "thiserror", "url", ] @@ -1658,7 +1846,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77b9e00cacde5b51388d28ed746c493b18a6add1f19b5e01d686b3b9ece66d4d" dependencies = [ "bstr", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1697,7 +1885,7 @@ dependencies = [ "gix-path", "gix-worktree", "io-close", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1715,7 +1903,7 @@ dependencies = [ "gix-path", "gix-traverse", "parking_lot", - "thiserror 2.0.6", + "thiserror", ] [[package]] @@ -1735,7 +1923,7 @@ dependencies = [ "fnv", "futures-core", "futures-sink", - "http", + "http 1.3.1", "indexmap 2.7.0", "slab", "tokio", @@ -1805,6 +1993,17 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "http" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + [[package]] name = "http" version = "1.3.1" @@ -1823,7 +2022,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http", + "http 1.3.1", ] [[package]] @@ -1834,7 +2033,7 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" dependencies = [ "bytes", "futures-util", - "http", + "http 1.3.1", "http-body", "pin-project-lite", ] @@ -1873,7 +2072,7 @@ dependencies = [ "futures-channel", "futures-util", "h2", - "http", + "http 1.3.1", "http-body", "httparse", "httpdate", @@ -1891,7 +2090,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" dependencies = [ "futures-util", - "http", + "http 1.3.1", "hyper", "hyper-util", "rustls", @@ -1924,7 +2123,7 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "http", + "http 1.3.1", "http-body", "hyper", "pin-project-lite", @@ -2106,6 +2305,12 @@ dependencies = [ "hashbrown 0.14.5", ] +[[package]] +name = "impl-more" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" + [[package]] name = "indexmap" version = "1.9.3" @@ -2223,6 +2428,12 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "language-tags" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" + [[package]] name = "lazy_static" version = "1.5.0" @@ -2267,6 +2478,23 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" +[[package]] +name = "local-channel" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" +dependencies = [ + "futures-core", + "futures-sink", + "local-waker", +] + +[[package]] +name = "local-waker" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" + [[package]] name = "lock_api" version = "0.4.12" @@ -2337,6 +2565,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" dependencies = [ "libc", + "log", "wasi 0.11.0+wasi-snapshot-preview1", "windows-sys 0.52.0", ] @@ -2409,7 +2638,7 @@ dependencies = [ "futures-sink", "js-sys", "pin-project-lite", - "thiserror 2.0.6", + "thiserror", "tracing", ] @@ -2421,7 +2650,7 @@ checksum = "46d7ab32b827b5b495bd90fa95a6cb65ccc293555dcc3199ae2937d2d237c8ed" dependencies = [ "async-trait", "bytes", - "http", + "http 1.3.1", "opentelemetry", "reqwest", "tracing", @@ -2434,7 +2663,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d899720fe06916ccba71c01d04ecd77312734e2de3467fd30d9d580c8ce85656" dependencies = [ "futures-core", - "http", + "http 1.3.1", "opentelemetry", "opentelemetry-http", "opentelemetry-proto", @@ -2442,7 +2671,7 @@ dependencies = [ "prost", "reqwest", "serde_json", - "thiserror 2.0.6", + "thiserror", "tokio", "tonic", "tracing", @@ -2477,7 +2706,7 @@ dependencies = [ "percent-encoding", "rand 0.9.0", "serde_json", - "thiserror 2.0.6", + "thiserror", "tokio", "tokio-stream", "tracing", @@ -2518,7 +2747,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbc23fdb8bbf668d582b0c17120bf6b7f91d85ccad3a5b39706f019a4efda005" dependencies = [ - "http", + "http 1.3.1", "lazy_static", "regex", ] @@ -2657,7 +2886,7 @@ dependencies = [ "rustc-hash", "rustls", "socket2", - "thiserror 2.0.6", + "thiserror", "tokio", "tracing", ] @@ -2676,7 +2905,7 @@ dependencies = [ "rustls", "rustls-pki-types", "slab", - "thiserror 2.0.6", + "thiserror", "tinyvec", "tracing", "web-time", @@ -2797,6 +3026,12 @@ dependencies = [ "regex-syntax", ] +[[package]] +name = "regex-lite" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" + [[package]] name = "regex-syntax" version = "0.8.5" @@ -2823,7 +3058,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http", + "http 1.3.1", "http-body", "http-body-util", "hyper", @@ -3058,13 +3293,14 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "sentry" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "255914a8e53822abd946e2ce8baa41d4cded6b8e938913b7f7b9da5b7ab44335" +checksum = "63cc32f40b74c68aed98979c383fc7e2a2d2ccfec5f3bde73542bcf69a275513" dependencies = [ "httpdate", "reqwest", "rustls", + "sentry-actix", "sentry-core", "sentry-log", "tokio", @@ -3072,14 +3308,26 @@ dependencies = [ "webpki-roots", ] +[[package]] +name = "sentry-actix" +version = "0.38.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fd873098eb3b53860b5ea7bf6d78c313598168ea6dd830a766170861a3af451" +dependencies = [ + "actix-http", + "actix-web", + "bytes", + "futures-util", + "sentry-core", +] + [[package]] name = "sentry-core" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a6409d845707d82415c800290a5d63be5e3df3c2e417b0997c60531dfbd35ef" +checksum = "d37745984fb7145c2f8bd46b7dacffa88da18d5ddcc8e76c24546075586927a0" dependencies = [ - "once_cell", - "rand 0.8.5", + "rand 0.9.0", "sentry-types", "serde", "serde_json", @@ -3087,9 +3335,9 @@ dependencies = [ [[package]] name = "sentry-log" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693841da8dfb693af29105edfbea1d91348a13d23dd0a5d03761eedb9e450c46" +checksum = "951a748cd7cbd22790cf0919293615acdee74208a4268b429d0114feee381b17" dependencies = [ "log", "sentry-core", @@ -3097,16 +3345,16 @@ dependencies = [ [[package]] name = "sentry-types" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d3f117b8755dbede8260952de2aeb029e20f432e72634e8969af34324591631" +checksum = "284449bcc422c270b11075fd8bb6104d4e3d4f3c34a0092b4b4a87d34f2ec3b4" dependencies = [ "debugid", "hex", - "rand 0.8.5", + "rand 0.9.0", "serde", "serde_json", - "thiserror 1.0.69", + "thiserror", "time", "url", "uuid", @@ -3363,38 +3611,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" -dependencies = [ - "thiserror-impl 1.0.69", -] - -[[package]] -name = "thiserror" -version = "2.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fec2a1820ebd077e2b90c4df007bebf344cd394098a13c563957d0afc83ea47" -dependencies = [ - "thiserror-impl 2.0.6", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.69" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" dependencies = [ - "proc-macro2", - "quote", - "syn", + "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "2.0.6" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d65750cab40f4ff1929fb1ba509e9914eb756131cef4210da8d5d700d26f6312" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" dependencies = [ "proc-macro2", "quote", @@ -3477,7 +3705,9 @@ dependencies = [ "bytes", "libc", "mio", + "parking_lot", "pin-project-lite", + "signal-hook-registry", "socket2", "tokio-macros", "windows-sys 0.52.0", @@ -3557,7 +3787,7 @@ dependencies = [ "base64", "bytes", "h2", - "http", + "http 1.3.1", "http-body", "http-body-util", "hyper", @@ -3660,7 +3890,7 @@ dependencies = [ [[package]] name = "tracing-batteries" version = "0.1.0" -source = "git+https://github.com/sierrasoftworks/tracing-batteries-rs.git#2c699412907eb06493d07f57038140a5aabaf6e8" +source = "git+https://github.com/sierrasoftworks/tracing-batteries-rs.git#9f976f42f6c1b678f6a5ed4564cfe6813976fe1d" dependencies = [ "opentelemetry", "opentelemetry-otlp", @@ -3788,6 +4018,12 @@ dependencies = [ "tinyvec", ] +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + [[package]] name = "unsafe-libyaml" version = "0.2.11"