bazzar/Cargo.lock

5212 lines
121 KiB
Plaintext
Raw Normal View History

2022-04-14 08:07:59 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-06-03 13:31:57 +02:00
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
2022-04-14 08:07:59 +02:00
[[package]]
name = "actix-codec"
2023-07-07 15:53:43 +02:00
version = "0.5.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
2022-04-14 08:07:59 +02:00
dependencies = [
"bitflags",
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
"futures-core",
"futures-sink",
2022-04-14 08:07:59 +02:00
"memchr",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
"tokio",
"tokio-util",
2023-07-07 15:53:43 +02:00
"tracing",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-http"
2023-05-05 14:20:50 +02:00
version = "3.3.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2023-05-05 14:20:50 +02:00
"ahash 0.8.3",
2023-07-07 15:53:43 +02:00
"base64 0.21.2",
2022-04-14 08:07:59 +02:00
"bitflags",
"brotli",
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2023-07-07 15:51:11 +02:00
"h2",
2022-04-14 08:07:59 +02:00
"http",
"httparse",
2023-07-07 15:51:11 +02:00
"httpdate",
"itoa",
2022-04-20 14:30:59 +02:00
"language-tags",
2022-04-14 08:07:59 +02:00
"local-channel",
"mime",
"percent-encoding",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-11-18 16:31:52 +01:00
"rand 0.8.5",
2023-06-01 10:41:58 +02:00
"sha1",
2022-04-14 08:07:59 +02:00
"smallvec",
2023-07-07 15:51:11 +02:00
"tokio",
"tokio-util",
2022-10-31 09:28:49 +01:00
"tracing",
2023-07-07 15:51:11 +02:00
"zstd",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
dependencies = [
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-router"
2022-10-31 09:28:49 +01:00
version = "0.5.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
2022-04-14 08:07:59 +02:00
dependencies = [
"bytestring",
"http",
"regex",
"serde",
2022-10-31 09:28:49 +01:00
"tracing",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-rt"
2023-05-05 14:20:50 +02:00
version = "2.8.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
2023-07-07 15:51:11 +02:00
"tokio",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-server"
2023-05-05 14:20:50 +02:00
version = "2.2.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
2023-07-07 15:51:11 +02:00
"mio",
2022-04-14 08:07:59 +02:00
"num_cpus",
2023-07-07 15:51:11 +02:00
"socket2",
"tokio",
2022-04-14 08:07:59 +02:00
"tracing",
]
[[package]]
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
"futures-core",
2022-04-14 08:07:59 +02:00
"paste",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-utils"
2022-10-31 09:28:49 +01:00
version = "3.0.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2022-04-14 08:07:59 +02:00
dependencies = [
"local-waker",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-web"
2023-05-05 14:20:50 +02:00
version = "4.3.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
2023-05-05 14:20:50 +02:00
"ahash 0.7.6",
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"bytestring",
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-05-05 14:20:50 +02:00
"cookie 0.16.2",
2022-04-14 08:07:59 +02:00
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-10-31 09:28:49 +01:00
"http",
2023-07-07 15:51:11 +02:00
"itoa",
2022-04-20 14:30:59 +02:00
"language-tags",
2022-04-14 08:07:59 +02:00
"log",
"mime",
"once_cell",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"regex",
"serde",
"serde_json",
2022-04-20 14:30:59 +02:00
"serde_urlencoded",
2022-04-14 08:07:59 +02:00
"smallvec",
2023-07-07 15:51:11 +02:00
"socket2",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2022-04-14 08:07:59 +02:00
"url",
]
[[package]]
name = "actix-web-codegen"
2023-05-05 14:20:50 +02:00
version = "4.2.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-router",
2022-04-14 08:07:59 +02:00
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-04-14 08:07:59 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "addr2line"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
dependencies = [
"gimli",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
2023-07-07 15:53:43 +02:00
"getrandom 0.2.10",
2022-04-14 08:07:59 +02:00
"once_cell",
2023-05-05 14:20:50 +02:00
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-07-07 15:53:43 +02:00
"getrandom 0.2.10",
2023-05-05 14:20:50 +02:00
"once_cell",
"version_check",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "aho-corasick"
2023-07-07 15:53:43 +02:00
version = "1.0.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
2022-04-14 08:07:59 +02:00
dependencies = [
"memchr",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "aliasable"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
2022-04-14 08:07:59 +02:00
[[package]]
name = "alloc-no-stdlib"
2022-10-31 09:28:49 +01:00
version = "2.0.4"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2022-04-14 08:07:59 +02:00
[[package]]
name = "alloc-stdlib"
2022-10-31 09:28:49 +01:00
version = "0.2.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2022-04-14 08:07:59 +02:00
dependencies = [
"alloc-no-stdlib",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "allocator-api2"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9"
2023-06-01 10:41:58 +02:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
2022-10-31 09:28:49 +01:00
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
2022-10-31 09:28:49 +01:00
"libc",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "anyhow"
2023-05-05 14:20:50 +02:00
version = "1.0.71"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
2022-04-14 21:40:26 +02:00
2023-05-15 22:55:09 +02:00
[[package]]
name = "anymap"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344"
2023-06-01 10:41:58 +02:00
[[package]]
name = "arc-swap"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
2022-04-14 21:40:26 +02:00
[[package]]
name = "argon2"
2022-10-31 09:28:49 +01:00
version = "0.4.1"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "db4ce4441f99dbd377ca8a8f57b698c44d0d6e712d8329b5040da5a64aa1ce73"
2022-04-14 21:40:26 +02:00
dependencies = [
"base64ct",
"blake2",
2023-07-07 15:51:11 +02:00
"password-hash",
2022-04-14 21:40:26 +02:00
"rayon",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "arrayvec"
2023-07-07 15:53:43 +02:00
version = "0.7.4"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2022-04-14 08:07:59 +02:00
2023-06-03 13:31:57 +02:00
[[package]]
name = "async-attributes"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
dependencies = [
"quote",
"syn 1.0.109",
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "async-channel"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
2023-05-22 22:06:05 +02:00
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "async-executor"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
dependencies = [
"async-lock",
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"slab",
]
[[package]]
name = "async-global-executor"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
dependencies = [
"async-channel",
"async-executor",
"async-io",
"async-lock",
"blocking",
"futures-lite",
"once_cell",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-03 13:31:57 +02:00
]
[[package]]
name = "async-io"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
"async-lock",
2023-07-07 15:51:11 +02:00
"autocfg",
"cfg-if",
2023-06-03 13:31:57 +02:00
"concurrent-queue",
"futures-lite",
"log",
"parking",
"polling",
2023-07-07 15:51:11 +02:00
"rustix",
2023-06-03 13:31:57 +02:00
"slab",
2023-07-07 15:51:11 +02:00
"socket2",
2023-06-03 13:31:57 +02:00
"waker-fn",
]
[[package]]
name = "async-lock"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
dependencies = [
"event-listener",
]
[[package]]
name = "async-std"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
dependencies = [
"async-attributes",
"async-channel",
"async-global-executor",
"async-io",
"async-lock",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"once_cell",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-03 13:31:57 +02:00
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
[[package]]
name = "async-stream"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
dependencies = [
"async-stream-impl",
"futures-core",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-03 13:31:57 +02:00
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2023-06-03 13:31:57 +02:00
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "async-stripe"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65bb25e3145c6216eafb3eca6f8cd6e016f43c9d4416d0af7984de46acf4f288"
dependencies = [
"chrono",
"futures-util",
2023-05-22 22:06:05 +02:00
"hex",
2023-06-01 10:41:58 +02:00
"hmac",
2023-05-22 22:06:05 +02:00
"http-types",
2023-07-07 15:51:11 +02:00
"hyper",
"hyper-tls",
2023-05-22 22:06:05 +02:00
"serde",
"serde_json",
"serde_path_to_error",
"serde_qs 0.10.1",
2023-06-01 10:41:58 +02:00
"sha2",
2023-05-22 22:06:05 +02:00
"smart-default",
"smol_str",
"thiserror",
2023-07-07 15:51:11 +02:00
"tokio",
2023-05-22 22:06:05 +02:00
"uuid 0.8.2",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "async-task"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
2022-04-14 08:07:59 +02:00
[[package]]
name = "async-trait"
2023-07-07 15:53:43 +02:00
version = "0.1.71"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "atoi"
2022-10-31 09:28:49 +01:00
version = "1.0.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
2022-04-14 08:07:59 +02:00
dependencies = [
"num-traits",
]
2022-05-20 16:08:49 +02:00
[[package]]
2023-07-07 15:53:43 +02:00
name = "atoi"
version = "2.0.0"
2022-05-20 16:08:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
2022-05-20 16:08:49 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"num-traits",
2022-05-20 16:08:49 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "atomic"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
2023-06-03 13:31:57 +02:00
[[package]]
name = "atomic-waker"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
[[package]]
name = "attohttpc"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7"
dependencies = [
"http",
"log",
"native-tls",
"serde",
"serde_json",
"url",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2022-12-08 16:22:20 +01:00
"hermit-abi 0.1.19",
2022-04-14 08:07:59 +02:00
"libc",
2023-07-07 15:51:11 +02:00
"winapi",
2022-11-18 16:31:52 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2023-06-03 13:31:57 +02:00
[[package]]
name = "aws-creds"
version = "0.34.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3776743bb68d4ad02ba30ba8f64373f1be4e082fe47651767171ce75bb2f6cf5"
dependencies = [
"attohttpc",
2023-07-07 15:51:11 +02:00
"dirs",
2023-06-03 13:31:57 +02:00
"log",
"quick-xml",
"rust-ini",
"serde",
"thiserror",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2023-06-03 13:31:57 +02:00
"url",
]
[[package]]
name = "aws-region"
version = "0.25.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "056557a61427d0e5ba29dd931031c8ffed4ee7a550e7cd55692a9d8deb0a9dba"
dependencies = [
"thiserror",
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "axum"
version = "0.6.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39"
dependencies = [
"async-trait",
"axum-core",
"bitflags",
"bytes 1.4.0",
"futures-util",
"http",
2023-07-07 15:51:11 +02:00
"http-body",
"hyper",
"itoa",
2023-06-21 21:35:46 +02:00
"matchit",
"memchr",
"mime",
"percent-encoding",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-21 21:35:46 +02:00
"rustversion",
"serde",
"sync_wrapper",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes 1.4.0",
"futures-util",
"http",
2023-07-07 15:51:11 +02:00
"http-body",
2023-06-21 21:35:46 +02:00
"mime",
"rustversion",
"tower-layer",
"tower-service",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "backtrace"
version = "0.3.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "bae"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33b8de67cc41132507eeece2584804efcb15f85ba516e34c944b7667f480397a"
dependencies = [
"heck 0.3.3",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "base64"
2022-10-31 09:28:49 +01:00
version = "0.13.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2022-04-14 08:07:59 +02:00
2022-12-20 15:34:20 +01:00
[[package]]
name = "base64"
2023-07-07 15:53:43 +02:00
version = "0.21.2"
2022-12-20 15:34:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2022-12-20 15:34:20 +01:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "base64ct"
2023-05-05 14:20:50 +02:00
version = "1.6.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2022-04-14 08:07:59 +02:00
[[package]]
name = "bigdecimal"
2023-07-07 15:53:43 +02:00
version = "0.3.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa"
2022-04-14 08:07:59 +02:00
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
2022-11-01 22:09:58 +01:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-07 15:53:43 +02:00
[[package]]
name = "bitvec"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "blake2"
2022-12-20 15:34:20 +01:00
version = "0.10.6"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 15:34:20 +01:00
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
2022-04-14 21:40:26 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"digest",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "block-buffer"
2023-05-05 14:20:50 +02:00
version = "0.10.4"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"generic-array",
2022-04-14 08:07:59 +02:00
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "blocking"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
dependencies = [
"async-channel",
"async-lock",
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
"log",
]
2022-11-29 15:23:45 +01:00
[[package]]
name = "borsh"
2023-05-05 14:20:50 +02:00
version = "0.10.3"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
2022-11-29 15:23:45 +01:00
dependencies = [
"borsh-derive",
2023-05-05 14:20:50 +02:00
"hashbrown 0.13.2",
2022-11-29 15:23:45 +01:00
]
[[package]]
name = "borsh-derive"
2023-05-05 14:20:50 +02:00
version = "0.10.3"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
2022-11-29 15:23:45 +01:00
dependencies = [
"borsh-derive-internal",
"borsh-schema-derive-internal",
"proc-macro-crate",
"proc-macro2",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-11-29 15:23:45 +01:00
]
[[package]]
name = "borsh-derive-internal"
2023-05-05 14:20:50 +02:00
version = "0.10.3"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
2022-11-29 15:23:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-11-29 15:23:45 +01:00
]
[[package]]
name = "borsh-schema-derive-internal"
2023-05-05 14:20:50 +02:00
version = "0.10.3"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
2022-11-29 15:23:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-11-29 15:23:45 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "brotli"
version = "3.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
2023-05-05 14:20:50 +02:00
version = "2.3.4"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
2022-04-14 08:07:59 +02:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
[[package]]
name = "bstr"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"memchr",
]
[[package]]
name = "bumpalo"
2023-07-07 15:53:43 +02:00
version = "3.13.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
2022-04-14 08:07:59 +02:00
2022-11-29 15:23:45 +01:00
[[package]]
name = "bytecheck"
2023-07-07 15:53:43 +02:00
version = "0.6.11"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
2022-11-29 15:23:45 +01:00
dependencies = [
"bytecheck_derive",
"ptr_meta",
2023-05-05 14:20:50 +02:00
"simdutf8",
2022-11-29 15:23:45 +01:00
]
[[package]]
name = "bytecheck_derive"
2023-07-07 15:53:43 +02:00
version = "0.6.11"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
2022-11-29 15:23:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-11-29 15:23:45 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2023-06-01 22:02:47 +02:00
[[package]]
name = "bytes"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
dependencies = [
"byteorder",
"iovec",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "bytes"
2023-05-05 14:20:50 +02:00
version = "1.4.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-04-14 08:07:59 +02:00
[[package]]
name = "bytestring"
2023-05-05 14:20:50 +02:00
version = "1.3.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-12-01 17:39:06 +01:00
]
2023-06-01 10:41:58 +02:00
[[package]]
name = "cache-adapter"
version = "0.1.0"
dependencies = [
"async-trait",
2023-06-03 13:31:57 +02:00
"bincode",
2023-06-01 22:02:47 +02:00
"config",
2023-06-01 10:41:58 +02:00
"serde",
"thiserror",
2023-07-07 15:53:43 +02:00
"toml 0.7.6",
2023-06-03 13:31:57 +02:00
"tracing",
2023-06-01 10:41:58 +02:00
]
[[package]]
name = "cache-adapter-embedded-memory"
version = "0.1.0"
dependencies = [
"async-trait",
"bincode",
"cache-adapter",
"chrono",
"futures-executor",
2023-06-03 13:31:57 +02:00
"plugin-api",
2023-06-01 10:41:58 +02:00
"serde",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-01 10:41:58 +02:00
"tracing",
]
[[package]]
name = "cache-adapter-redis"
version = "0.1.0"
dependencies = [
"async-trait",
"bincode",
"cache-adapter",
"chrono",
"deadpool",
2023-06-01 22:02:47 +02:00
"futures 0.3.28",
2023-06-01 10:41:58 +02:00
"redis",
"redis-async-pool",
"serde",
2023-07-07 15:51:11 +02:00
"tokio",
"tracing",
2022-05-06 11:47:18 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "cc"
2023-05-05 14:20:50 +02:00
version = "1.0.79"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-04-14 08:07:59 +02:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2023-06-01 10:41:58 +02:00
version = "0.4.26"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-01 10:41:58 +02:00
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"android-tzdata",
2022-10-31 09:28:49 +01:00
"iana-time-zone",
2022-05-15 13:08:42 +02:00
"js-sys",
2022-04-14 08:07:59 +02:00
"num-traits",
"serde",
2022-11-29 15:23:45 +01:00
"time 0.1.45",
2022-05-15 10:30:15 +02:00
"wasm-bindgen",
2023-07-07 15:51:11 +02:00
"winapi",
2022-12-05 06:04:14 +01:00
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "clap"
version = "3.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
dependencies = [
2023-06-05 16:38:10 +02:00
"atty",
2023-06-03 13:31:57 +02:00
"bitflags",
"clap_derive",
"clap_lex",
2023-07-07 15:53:43 +02:00
"indexmap 1.9.3",
2023-06-03 13:31:57 +02:00
"once_cell",
2023-07-07 15:51:11 +02:00
"strsim",
2023-06-05 16:38:10 +02:00
"termcolor",
2023-07-07 15:51:11 +02:00
"textwrap",
2023-06-03 13:31:57 +02:00
]
[[package]]
name = "clap_derive"
version = "3.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008"
dependencies = [
"heck 0.4.1",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
2023-06-01 10:41:58 +02:00
[[package]]
name = "combine"
version = "4.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
dependencies = [
"bytes 1.4.0",
"futures-core",
"memchr",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
"tokio",
"tokio-util",
2023-06-01 10:41:58 +02:00
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "common_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3f6d59c71e7dc3af60f0af9db32364d96a16e9310f3f5db2b55ed642162dd35"
2023-05-22 22:06:05 +02:00
[[package]]
name = "concurrent-queue"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
dependencies = [
"crossbeam-utils",
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "config"
version = "0.1.0"
dependencies = [
"actix-web",
2023-05-05 14:20:50 +02:00
"cookie 0.17.0",
2022-11-29 15:23:45 +01:00
"parking_lot 0.12.1",
2023-07-07 15:51:11 +02:00
"password-hash",
2022-05-06 11:47:18 +02:00
"serde",
"serde_json",
"thiserror",
2023-07-07 15:53:43 +02:00
"toml 0.7.6",
2022-12-20 15:34:20 +01:00
"tracing-subscriber",
"tracing-timing",
2022-05-06 11:47:18 +02:00
]
2022-11-11 16:32:07 +01:00
[[package]]
name = "console"
2023-07-07 15:53:43 +02:00
version = "0.15.7"
2022-11-11 16:32:07 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
2022-11-11 16:32:07 +01:00
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
2023-07-07 15:53:43 +02:00
"windows-sys 0.45.0",
2022-05-05 16:30:25 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
2022-12-20 15:34:20 +01:00
version = "0.16.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 15:34:20 +01:00
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2022-04-14 08:07:59 +02:00
dependencies = [
"percent-encoding",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2023-05-05 14:20:50 +02:00
"version_check",
]
[[package]]
name = "cookie"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
dependencies = [
2023-07-07 15:53:43 +02:00
"base64 0.21.2",
2023-06-01 10:41:58 +02:00
"hmac",
2022-11-18 16:31:52 +01:00
"rand 0.8.5",
2023-06-01 10:41:58 +02:00
"sha2",
2022-04-14 08:07:59 +02:00
"subtle",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2023-05-05 14:20:50 +02:00
"version_check",
2022-04-14 08:07:59 +02:00
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2023-05-05 14:20:50 +02:00
version = "0.8.4"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-04-21 16:06:34 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "cpufeatures"
2023-07-07 15:53:43 +02:00
version = "0.2.9"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
]
[[package]]
name = "crc"
2023-05-05 14:20:50 +02:00
version = "3.0.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
2022-04-14 08:07:59 +02:00
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
2023-05-05 14:20:50 +02:00
version = "2.2.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
2022-04-14 08:07:59 +02:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
]
2022-12-08 16:22:20 +01:00
[[package]]
name = "crossbeam"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-12-08 16:22:20 +01:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "crossbeam-channel"
2023-05-05 14:20:50 +02:00
version = "0.5.8"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"crossbeam-utils",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "crossbeam-deque"
2023-05-05 14:20:50 +02:00
version = "0.8.3"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2022-04-14 21:40:26 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 21:40:26 +02:00
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-07-07 15:53:43 +02:00
version = "0.9.15"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2022-04-14 21:40:26 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
"cfg-if",
2022-04-14 21:40:26 +02:00
"crossbeam-utils",
2023-07-07 15:53:43 +02:00
"memoffset 0.9.0",
2022-04-14 21:40:26 +02:00
"scopeguard",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "crossbeam-queue"
2022-11-29 15:23:45 +01:00
version = "0.3.8"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 15:23:45 +01:00
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-07-07 15:53:43 +02:00
version = "0.8.16"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "crypto-common"
2022-10-31 09:28:49 +01:00
version = "0.1.6"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"generic-array",
2022-04-14 08:07:59 +02:00
"typenum",
]
2023-05-15 22:55:09 +02:00
[[package]]
name = "ctor"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
dependencies = [
"quote",
"syn 1.0.109",
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "darling"
2023-05-05 14:20:50 +02:00
version = "0.20.1"
2022-05-06 16:02:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "0558d22a7b463ed0241e993f76f09f30b126687447751a8638587b864e4b3944"
2022-05-06 16:02:38 +02:00
dependencies = [
2022-12-08 16:22:20 +01:00
"darling_core",
"darling_macro",
2022-05-06 16:02:38 +02:00
]
[[package]]
name = "darling_core"
2023-05-05 14:20:50 +02:00
version = "0.20.1"
2022-05-06 16:02:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "ab8bfa2e259f8ee1ce5e97824a3c55ec4404a0d772ca7fa96bf19f0752a046eb"
2022-05-06 16:02:38 +02:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2023-07-07 15:51:11 +02:00
"strsim",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-12-05 06:04:14 +01:00
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "darling_macro"
2023-05-05 14:20:50 +02:00
version = "0.20.1"
2022-05-06 16:02:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "29a358ff9f12ec09c3e61fef9b5a9902623a695a46a917b07f269bff1445611a"
2022-05-06 16:02:38 +02:00
dependencies = [
2022-12-08 16:22:20 +01:00
"darling_core",
2022-05-06 16:02:38 +02:00
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-05-06 16:02:38 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "dashmap"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-06-21 21:35:46 +02:00
"hashbrown 0.12.3",
"lock_api",
"once_cell",
2023-07-07 15:53:43 +02:00
"parking_lot_core 0.9.8",
2023-06-21 21:35:46 +02:00
]
2022-11-09 16:59:12 +01:00
[[package]]
name = "db-utils"
version = "0.1.0"
dependencies = [
"model",
"sqlx",
2023-07-07 15:53:43 +02:00
"sqlx-core 0.7.0",
2022-11-09 16:59:12 +01:00
]
2023-06-01 10:41:58 +02:00
[[package]]
name = "deadpool"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
"retain_mut",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-01 10:41:58 +02:00
]
[[package]]
name = "deadpool-runtime"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
2022-04-14 08:07:59 +02:00
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
2023-06-01 10:41:58 +02:00
"rustc_version",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "digest"
2023-07-07 15:53:43 +02:00
version = "0.10.7"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"block-buffer",
2022-04-14 08:07:59 +02:00
"crypto-common",
"subtle",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
2023-07-07 15:51:11 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
2022-12-02 16:05:55 +01:00
[[package]]
2023-07-07 15:51:11 +02:00
name = "dlv-list"
version = "0.3.0"
2022-12-02 16:05:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:51:11 +02:00
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
2022-12-02 16:05:55 +01:00
2022-04-14 08:07:59 +02:00
[[package]]
2023-07-07 15:51:11 +02:00
name = "doc-comment"
version = "0.3.3"
2022-12-20 15:34:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2022-04-14 08:07:59 +02:00
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2022-10-31 09:28:49 +01:00
[[package]]
name = "dotenvy"
2023-05-05 14:20:50 +02:00
version = "0.15.7"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
2022-10-31 09:28:49 +01:00
2022-05-06 16:02:38 +02:00
[[package]]
name = "dummy"
2023-05-05 14:20:50 +02:00
version = "0.5.0"
2022-05-06 16:02:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "8da904daa6ce71bb51e03fd0529b08bad4b18bae89e176873c7bae9eb91a19ce"
2022-05-06 16:02:38 +02:00
dependencies = [
2022-12-08 16:22:20 +01:00
"darling",
2023-05-05 14:20:50 +02:00
"proc-macro2",
2022-05-06 16:02:38 +02:00
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-05-06 16:02:38 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "either"
2023-05-05 14:20:50 +02:00
version = "1.8.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-04-14 08:07:59 +02:00
2022-11-11 16:32:07 +01:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2022-04-14 08:07:59 +02:00
[[package]]
name = "encoding_rs"
2023-05-05 14:20:50 +02:00
version = "0.8.32"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-12-08 16:22:20 +01:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "equivalent"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88bffebc5d80432c9b140ee17875ff173a8ab62faad5b257da912bd2f6c1c0a1"
2023-05-05 14:20:50 +02:00
[[package]]
name = "errno"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
]
2022-12-08 16:22:20 +01:00
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2023-05-24 19:03:49 +02:00
[[package]]
name = "event-bus-adapter"
version = "0.1.0"
2023-05-25 15:56:15 +02:00
dependencies = [
2023-06-03 13:31:57 +02:00
"async-trait",
2023-05-25 15:56:15 +02:00
"bincode",
2023-06-01 22:02:47 +02:00
"config",
2023-05-25 15:56:15 +02:00
"event-bus-messages",
2023-06-01 22:02:47 +02:00
"futures 0.3.28",
2023-05-25 15:56:15 +02:00
"serde",
"thiserror",
2023-07-07 15:51:11 +02:00
"tokio",
2023-07-07 15:53:43 +02:00
"toml 0.7.6",
"uuid 1.4.0",
2023-05-25 15:56:15 +02:00
]
2023-05-24 19:03:49 +02:00
[[package]]
name = "event-bus-messages"
version = "0.1.0"
2023-05-25 15:56:15 +02:00
dependencies = [
"bincode",
"serde",
2023-06-01 10:41:58 +02:00
"serde_json",
2023-05-25 15:56:15 +02:00
"thiserror",
]
2023-05-24 19:03:49 +02:00
2022-04-16 18:58:59 +02:00
[[package]]
2023-06-01 10:41:58 +02:00
name = "event-bus-redis"
version = "0.1.0"
2023-05-25 23:51:26 +02:00
dependencies = [
2023-06-03 13:31:57 +02:00
"async-trait",
2023-06-01 10:41:58 +02:00
"event-bus-adapter",
2023-06-01 22:02:47 +02:00
"futures 0.3.28",
2023-06-01 10:41:58 +02:00
"futures-util",
2023-06-03 13:31:57 +02:00
"plugin-api",
2023-06-01 10:41:58 +02:00
"redis-async",
"serde",
"thiserror",
2023-07-07 15:53:43 +02:00
"toml 0.7.6",
2023-06-01 10:41:58 +02:00
"tracing",
2023-05-25 23:51:26 +02:00
]
[[package]]
2023-06-01 10:41:58 +02:00
name = "event-listener"
version = "2.5.3"
2023-05-25 23:51:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-01 10:41:58 +02:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2023-05-25 23:51:26 +02:00
2022-05-06 16:02:38 +02:00
[[package]]
name = "fake"
2023-07-07 15:53:43 +02:00
version = "2.6.1"
2022-05-06 16:02:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "0a44c765350db469b774425ff1c833890b16ceb9612fb5d7c4bbdf4a1b55f876"
2022-05-06 16:02:38 +02:00
dependencies = [
"chrono",
"dummy",
"http",
2022-11-18 16:31:52 +01:00
"rand 0.8.5",
2023-05-05 14:20:50 +02:00
"unidecode",
2023-07-07 15:53:43 +02:00
"uuid 1.4.0",
2022-05-06 16:02:38 +02:00
]
2022-04-20 16:25:52 +02:00
[[package]]
name = "fastrand"
2023-05-05 14:20:50 +02:00
version = "1.9.0"
2022-04-20 16:25:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2022-04-20 16:25:52 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"instant",
2023-05-25 23:51:26 +02:00
]
2023-06-01 22:02:47 +02:00
[[package]]
name = "file-storage-adapter"
version = "0.1.0"
dependencies = [
"async-trait",
"config",
"futures 0.3.28",
"futures-util",
"thiserror",
"tracing",
]
[[package]]
name = "file-storage-local"
version = "0.1.0"
dependencies = [
"async-trait",
"file-storage-adapter",
"futures 0.3.28",
"serde",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-01 22:02:47 +02:00
"tracing",
2023-07-07 15:53:43 +02:00
"uuid 1.4.0",
2023-06-01 22:02:47 +02:00
]
[[package]]
name = "file-storage-s3"
version = "0.1.0"
2023-06-03 13:31:57 +02:00
dependencies = [
2023-06-19 22:20:51 +02:00
"async-trait",
2023-06-03 13:31:57 +02:00
"file-storage-adapter",
"futures 0.3.28",
"rust-s3",
"serde",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-03 13:31:57 +02:00
"tracing",
2023-07-07 15:53:43 +02:00
"uuid 1.4.0",
2023-06-03 13:31:57 +02:00
]
2023-06-01 22:02:47 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "flate2"
2023-05-05 14:20:50 +02:00
version = "1.0.26"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2022-04-14 08:07:59 +02:00
dependencies = [
"crc32fast",
2023-06-01 10:41:58 +02:00
"miniz_oxide",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2022-04-21 16:06:34 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2022-04-14 08:07:59 +02:00
[[package]]
name = "form_urlencoded"
2023-07-07 15:53:43 +02:00
version = "1.2.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2022-04-14 08:07:59 +02:00
dependencies = [
"percent-encoding",
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "fulfillment_adapter"
version = "0.1.0"
dependencies = [
"async-trait",
"thiserror",
"tracing",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "funty"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
2023-06-01 22:02:47 +02:00
[[package]]
name = "futures"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
2022-04-14 08:07:59 +02:00
"futures-task",
"futures-util",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "futures-channel"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
"futures-sink",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "futures-core"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-executor"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
2022-04-14 08:07:59 +02:00
"futures-task",
"futures-util",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "futures-intrusive"
2022-11-29 15:23:45 +01:00
version = "0.4.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 15:23:45 +01:00
checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
2022-04-14 08:07:59 +02:00
"lock_api",
2022-11-29 15:23:45 +01:00
"parking_lot 0.11.2",
2022-04-14 08:07:59 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "futures-intrusive"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
dependencies = [
"futures-core",
"lock_api",
"parking_lot 0.12.1",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-io"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2022-04-14 08:07:59 +02:00
2023-05-22 22:06:05 +02:00
[[package]]
name = "futures-lite"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
2023-05-22 22:06:05 +02:00
"memchr",
"parking",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-05-22 22:06:05 +02:00
"waker-fn",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-macro"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "futures-sink"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-task"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-util"
2023-05-05 14:20:50 +02:00
version = "0.3.28"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-06-01 22:02:47 +02:00
"futures 0.1.31",
"futures-channel",
"futures-core",
"futures-io",
2022-04-14 08:07:59 +02:00
"futures-macro",
"futures-sink",
2022-04-14 08:07:59 +02:00
"futures-task",
"memchr",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"pin-utils",
"slab",
2023-06-01 22:02:47 +02:00
"tokio-io",
2022-04-14 08:07:59 +02:00
]
2022-12-01 17:39:06 +01:00
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "generic-array"
2023-05-05 14:20:50 +02:00
version = "0.14.7"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2022-04-14 08:07:59 +02:00
dependencies = [
"typenum",
2023-05-05 14:20:50 +02:00
"version_check",
2022-04-14 08:07:59 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "gethostname"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
dependencies = [
"libc",
2023-07-07 15:51:11 +02:00
"winapi",
2023-06-21 21:35:46 +02:00
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-05-22 22:06:05 +02:00
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "getrandom"
2023-07-07 15:53:43 +02:00
version = "0.2.10"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"libc",
2022-10-31 09:28:49 +01:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-04-14 08:07:59 +02:00
]
2023-05-15 22:55:09 +02:00
[[package]]
name = "ghost"
2023-07-07 15:53:43 +02:00
version = "0.1.13"
2023-05-15 22:55:09 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "55f62cab8c48c54b8aba6588bd75fd00cdfe8517e79797c3662c5ed0c011d257"
2023-05-15 22:55:09 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2023-05-15 22:55:09 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "gimli"
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2022-04-14 08:07:59 +02:00
[[package]]
name = "git2"
2022-10-31 09:28:49 +01:00
version = "0.14.4"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "d0155506aab710a86160ddb504a480d2964d7ab5b9e62419be69e0032bc5931c"
2022-04-14 08:07:59 +02:00
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
"url",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "gloo-timers"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "h2"
2023-07-07 15:53:43 +02:00
version = "0.3.20"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
2022-04-14 08:07:59 +02:00
"http",
2023-07-07 15:53:43 +02:00
"indexmap 1.9.3",
2022-04-14 08:07:59 +02:00
"slab",
2023-07-07 15:51:11 +02:00
"tokio",
"tokio-util",
2022-04-14 08:07:59 +02:00
"tracing",
]
2022-11-29 15:23:45 +01:00
[[package]]
name = "hashbrown"
2023-05-05 14:20:50 +02:00
version = "0.12.3"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-11-29 15:23:45 +01:00
dependencies = [
2023-05-05 14:20:50 +02:00
"ahash 0.7.6",
2022-11-29 15:23:45 +01:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "hashbrown"
2023-05-05 14:20:50 +02:00
version = "0.13.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"ahash 0.8.3",
2022-04-14 08:07:59 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "hashbrown"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
dependencies = [
"ahash 0.8.3",
"allocator-api2",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "hashlink"
2023-07-07 15:53:43 +02:00
version = "0.8.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"hashbrown 0.14.0",
2022-04-14 08:07:59 +02:00
]
2022-12-20 15:34:20 +01:00
[[package]]
name = "hdrhistogram"
version = "7.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
dependencies = [
"base64 0.13.1",
"byteorder",
"crossbeam-channel",
"flate2",
"nom",
"num-traits",
]
2022-12-05 06:04:14 +01:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "heck"
2023-05-05 14:20:50 +02:00
version = "0.4.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-04-14 08:07:59 +02:00
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2022-12-08 16:22:20 +01:00
[[package]]
name = "hermit-abi"
2023-07-07 15:53:43 +02:00
version = "0.3.2"
2023-05-05 14:20:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
2023-05-05 14:20:50 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
2023-06-01 10:41:58 +02:00
"hmac",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2023-06-01 10:41:58 +02:00
"digest",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "http"
2023-05-05 14:20:50 +02:00
version = "0.2.9"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"fnv",
2023-07-07 15:51:11 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "http-body"
2022-06-12 06:22:27 +02:00
version = "0.4.5"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2022-04-18 22:07:52 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-18 22:07:52 +02:00
"http",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-18 22:07:52 +02:00
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "http-types"
version = "2.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
dependencies = [
"anyhow",
"async-channel",
"base64 0.13.1",
"futures-lite",
"http",
"infer",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-05-22 22:06:05 +02:00
"rand 0.7.3",
"serde",
"serde_json",
"serde_qs 0.8.5",
"serde_urlencoded",
"url",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "httparse"
2022-10-31 09:28:49 +01:00
version = "1.8.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2022-04-14 08:07:59 +02:00
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2022-04-18 22:07:52 +02:00
[[package]]
name = "hyper"
2023-07-07 15:53:43 +02:00
version = "0.14.27"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2022-04-18 22:07:52 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
"futures-channel",
"futures-core",
"futures-util",
2023-07-07 15:51:11 +02:00
"h2",
2022-04-18 22:07:52 +02:00
"http",
2023-07-07 15:51:11 +02:00
"http-body",
2022-04-18 22:07:52 +02:00
"httparse",
2023-07-07 15:51:11 +02:00
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
2022-04-18 22:07:52 +02:00
"tower-service",
"tracing",
"want",
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
2023-07-07 15:51:11 +02:00
"hyper",
"pin-project-lite",
"tokio",
2023-06-21 21:35:46 +02:00
"tokio-io-timeout",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2023-07-07 15:51:11 +02:00
"hyper",
2022-04-21 16:06:34 +02:00
"native-tls",
2023-07-07 15:51:11 +02:00
"tokio",
2022-04-21 16:06:34 +02:00
"tokio-native-tls",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "iana-time-zone"
2023-07-07 15:53:43 +02:00
version = "0.1.57"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
2022-10-31 09:28:49 +01:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-05-05 14:20:50 +02:00
"windows",
2022-10-31 09:28:49 +01:00
]
[[package]]
name = "iana-time-zone-haiku"
2023-07-07 15:53:43 +02:00
version = "0.1.2"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-10-31 09:28:49 +01:00
dependencies = [
2023-07-07 15:53:43 +02:00
"cc",
2022-10-31 09:28:49 +01:00
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2022-04-14 08:07:59 +02:00
[[package]]
name = "idna"
2023-07-07 15:53:43 +02:00
version = "0.4.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2022-04-14 08:07:59 +02:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-10-31 09:28:49 +01:00
[[package]]
2023-07-07 15:53:43 +02:00
name = "indexmap"
version = "1.9.3"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2022-10-31 09:28:49 +01:00
dependencies = [
2023-07-07 15:53:43 +02:00
"autocfg",
"hashbrown 0.12.3",
2022-10-31 09:28:49 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "indexmap"
2023-07-07 15:53:43 +02:00
version = "2.0.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"equivalent",
"hashbrown 0.14.0",
2022-04-14 08:07:59 +02:00
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "infer"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
2022-11-11 16:32:07 +01:00
[[package]]
name = "insta"
2023-07-07 15:53:43 +02:00
version = "1.30.0"
2022-11-11 16:32:07 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "28491f7753051e5704d4d0ae7860d45fae3238d7d235bc4289dcd45c48d3cec3"
2022-11-11 16:32:07 +01:00
dependencies = [
"console",
"lazy_static",
"linked-hash-map",
2023-06-11 16:21:13 +02:00
"ron",
"serde",
2022-11-11 16:32:07 +01:00
"similar",
"yaml-rust",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-05-22 14:19:11 +02:00
]
2023-05-15 22:55:09 +02:00
[[package]]
name = "inventory"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0eb5160c60ba1e809707918ee329adb99d222888155835c6feedba19f6c3fd4"
dependencies = [
"ctor",
"ghost",
"inventory-impl",
]
[[package]]
name = "inventory-impl"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e41b53715c6f0c4be49510bb82dee2c1e51c8586d885abe65396e82ed518548"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2022-04-14 08:07:59 +02:00
[[package]]
2022-12-08 16:22:20 +01:00
name = "io-lifetimes"
2023-07-07 15:53:43 +02:00
version = "1.0.11"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2022-12-08 16:22:20 +01:00
dependencies = [
2023-07-07 15:53:43 +02:00
"hermit-abi 0.3.2",
2022-12-08 16:22:20 +01:00
"libc",
2023-05-05 14:20:50 +02:00
"windows-sys 0.48.0",
2022-12-08 16:22:20 +01:00
]
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "ipnet"
2023-07-07 15:53:43 +02:00
version = "2.8.0"
2022-12-08 16:22:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2022-12-08 16:22:20 +01:00
[[package]]
name = "ipnetwork"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f84f1612606f3753f205a4e9a2efd6fe5b4c573a6269b2cc6c3003d44a0d127"
2022-04-14 08:07:59 +02:00
[[package]]
name = "itertools"
2022-10-31 09:28:49 +01:00
version = "0.10.5"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2022-04-14 08:07:59 +02:00
dependencies = [
"either",
]
2022-12-02 16:05:55 +01:00
[[package]]
2022-12-05 06:04:14 +01:00
name = "itoa"
2023-07-07 15:53:43 +02:00
version = "1.0.8"
2022-12-02 16:05:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
2022-12-02 16:05:55 +01:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "jobserver"
2023-05-05 14:20:50 +02:00
version = "0.1.26"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2023-07-07 15:53:43 +02:00
version = "0.3.64"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2022-04-14 08:07:59 +02:00
dependencies = [
"wasm-bindgen",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
2022-04-14 08:07:59 +02:00
[[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.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2023-07-07 15:53:43 +02:00
version = "0.2.147"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
2022-04-14 08:07:59 +02:00
[[package]]
name = "libgit2-sys"
2023-05-05 14:20:50 +02:00
version = "0.13.5+1.4.5"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "51e5ea06c26926f1002dd553fded6cfcdc9784c1f60feeb58368b4d9b07b6dba"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
]
[[package]]
name = "libz-sys"
2023-05-05 14:20:50 +02:00
version = "1.1.9"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-11-11 16:32:07 +01:00
[[package]]
name = "linked-hash-map"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2022-12-08 16:22:20 +01:00
[[package]]
name = "linux-raw-sys"
2023-07-07 15:53:43 +02:00
version = "0.3.8"
2022-12-08 16:22:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2022-12-08 16:22:20 +01:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "local-channel"
2022-05-09 16:17:27 +02:00
version = "0.1.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
2022-04-14 08:07:59 +02:00
"local-waker",
]
[[package]]
name = "local-waker"
2022-05-09 16:17:27 +02:00
version = "0.1.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2022-04-14 08:07:59 +02:00
[[package]]
name = "lock_api"
2023-07-07 15:53:43 +02:00
version = "0.4.10"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-04-14 08:07:59 +02:00
"scopeguard",
]
[[package]]
name = "log"
2023-07-07 15:53:43 +02:00
version = "0.4.19"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-06-03 13:31:57 +02:00
"value-bag",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "mac_address"
2023-07-07 15:53:43 +02:00
version = "1.1.5"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "4863ee94f19ed315bf3bc00299338d857d4b5bc856af375cc97d237382ad3856"
2022-04-14 08:07:59 +02:00
dependencies = [
"nix",
2023-07-07 15:51:11 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
2022-12-01 17:39:06 +01:00
[[package]]
name = "mach"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
dependencies = [
"libc",
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-07-07 15:53:43 +02:00
"regex-automata 0.1.10",
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "matchit"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
2023-06-03 13:31:57 +02:00
[[package]]
name = "maybe-async"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f1b8c13cb1f814b634a96b2c725449fe7ed464a7b8781de8688be5ffbd3f305"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "md-5"
2022-10-31 09:28:49 +01:00
version = "0.10.5"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"digest",
2022-04-14 08:07:59 +02:00
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2022-04-14 08:07:59 +02:00
[[package]]
name = "memchr"
2022-05-09 16:17:27 +02:00
version = "2.5.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2022-04-14 08:07:59 +02:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-04-14 08:07:59 +02:00
]
2022-11-29 15:23:45 +01:00
[[package]]
name = "memoffset"
2023-07-07 15:53:43 +02:00
version = "0.9.0"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
2022-11-29 15:23:45 +01:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-11-29 15:23:45 +01:00
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "migration"
version = "0.1.0"
dependencies = [
"async-std",
2023-06-06 17:02:42 +02:00
"async-trait",
2023-07-07 15:51:11 +02:00
"clap",
2023-06-05 16:38:10 +02:00
"dotenv",
2023-06-11 16:21:13 +02:00
"insta",
2023-06-03 13:31:57 +02:00
"sea-orm-migration",
2023-06-11 16:21:13 +02:00
"sqlx",
2023-06-05 16:38:10 +02:00
"tracing",
"tracing-subscriber",
2023-06-03 13:31:57 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "mime"
2023-05-05 14:20:50 +02:00
version = "0.3.17"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-04-14 08:07:59 +02:00
2023-06-03 13:31:57 +02:00
[[package]]
name = "minidom"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f45614075738ce1b77a1768912a60c0227525971b03e09122a05b8a34a2a6278"
dependencies = [
"rxml",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2023-05-05 14:20:50 +02:00
version = "0.7.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2022-04-14 08:07:59 +02:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2023-07-07 15:53:43 +02:00
version = "0.8.8"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
2023-07-07 15:53:43 +02:00
"windows-sys 0.48.0",
2022-04-14 08:07:59 +02:00
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "model"
version = "0.1.0"
dependencies = [
2022-05-08 09:47:05 +02:00
"argon2",
2022-05-06 11:47:18 +02:00
"chrono",
"derive_more",
2022-05-06 16:02:38 +02:00
"fake",
2023-07-07 15:51:11 +02:00
"password-hash",
2022-11-18 16:31:52 +01:00
"rand 0.8.5",
"rand_core 0.6.4",
2022-05-06 11:47:18 +02:00
"serde",
"sqlx",
2023-07-07 15:53:43 +02:00
"sqlx-core 0.7.0",
2022-05-06 11:47:18 +02:00
"thiserror",
2023-05-05 14:20:50 +02:00
"tracing",
2023-07-07 15:53:43 +02:00
"uuid 1.4.0",
2022-11-17 16:56:08 +01:00
"validator",
2022-05-06 11:47:18 +02:00
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "native-tls"
2022-11-29 15:23:45 +01:00
version = "0.2.11"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 15:23:45 +01:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2022-04-21 16:06:34 +02:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "nix"
2022-12-09 16:33:35 +01:00
version = "0.23.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:33:35 +01:00
checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
2022-04-14 08:07:59 +02:00
dependencies = [
"bitflags",
"cc",
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"libc",
2022-11-29 15:23:45 +01:00
"memoffset 0.6.5",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "nom"
2023-05-05 14:20:50 +02:00
version = "7.1.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2022-04-14 08:07:59 +02:00
dependencies = [
"memchr",
"minimal-lexical",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
2023-07-07 15:51:11 +02:00
"winapi",
2022-10-31 09:28:49 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "num-bigint"
2022-10-31 09:28:49 +01:00
version = "0.4.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-04-14 08:07:59 +02:00
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
2022-04-30 06:58:27 +02:00
version = "0.1.45"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 06:58:27 +02:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-04-14 08:07:59 +02:00
"num-traits",
]
[[package]]
name = "num-traits"
2022-05-09 16:17:27 +02:00
version = "0.2.15"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "num_cpus"
2023-07-07 15:53:43 +02:00
version = "1.16.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"hermit-abi 0.3.2",
2022-04-14 08:07:59 +02:00
"libc",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "object"
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
dependencies = [
"memchr",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "once_cell"
2023-07-07 15:53:43 +02:00
version = "1.18.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2022-04-14 08:07:59 +02:00
2022-04-21 16:06:34 +02:00
[[package]]
name = "openssl"
2023-07-07 15:53:43 +02:00
version = "0.10.55"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
2022-04-21 16:06:34 +02:00
dependencies = [
"bitflags",
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-21 16:06:34 +02:00
"foreign-types",
"libc",
"once_cell",
2022-05-09 16:17:27 +02:00
"openssl-macros",
2022-04-21 16:06:34 +02:00
"openssl-sys",
]
2022-05-09 16:17:27 +02:00
[[package]]
name = "openssl-macros"
2023-05-05 14:20:50 +02:00
version = "0.1.1"
2022-05-09 16:17:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-05-09 16:17:27 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-05-09 16:17:27 +02:00
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2023-07-07 15:53:43 +02:00
version = "0.9.90"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
2022-04-21 16:06:34 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "opentelemetry"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f"
dependencies = [
2023-07-07 15:51:11 +02:00
"opentelemetry_api",
"opentelemetry_sdk",
2023-06-21 21:35:46 +02:00
]
2023-06-22 09:20:35 +02:00
[[package]]
name = "opentelemetry-http"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a819b71d6530c4297b49b3cae2939ab3a8cc1b9f382826a1bc29dd0ca3864906"
dependencies = [
"async-trait",
"bytes 1.4.0",
"http",
2023-07-07 15:51:11 +02:00
"opentelemetry_api",
"reqwest",
2023-06-22 09:20:35 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "opentelemetry-otlp"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8af72d59a4484654ea8eb183fea5ae4eb6a41d7ac3e3bae5f4d2a282a3a7d3ca"
dependencies = [
"async-trait",
"futures 0.3.28",
"futures-util",
"http",
2023-07-07 15:51:11 +02:00
"opentelemetry",
2023-06-22 09:20:35 +02:00
"opentelemetry-http",
2023-06-21 21:35:46 +02:00
"opentelemetry-proto",
"prost",
2023-07-07 15:51:11 +02:00
"reqwest",
2023-06-21 21:35:46 +02:00
"serde",
"thiserror",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-21 21:35:46 +02:00
"tonic",
]
[[package]]
name = "opentelemetry-proto"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "045f8eea8c0fa19f7d48e7bc3128a39c2e5c533d5c61298c548dfefc1064474c"
dependencies = [
"futures 0.3.28",
"futures-util",
2023-07-07 15:51:11 +02:00
"opentelemetry",
2023-06-21 21:35:46 +02:00
"prost",
"tonic",
2023-05-05 14:20:50 +02:00
]
2023-06-22 09:20:35 +02:00
[[package]]
name = "opentelemetry-semantic-conventions"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24e33428e6bf08c6f7fcea4ddb8e358fab0fe48ab877a87c70c6ebe20f673ce5"
dependencies = [
2023-07-07 15:51:11 +02:00
"opentelemetry",
2023-05-05 14:20:50 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "opentelemetry_api"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2"
dependencies = [
"fnv",
"futures-channel",
"futures-util",
2023-07-07 15:53:43 +02:00
"indexmap 1.9.3",
2023-06-21 21:35:46 +02:00
"once_cell",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-21 21:35:46 +02:00
"thiserror",
"urlencoding",
]
[[package]]
name = "opentelemetry_sdk"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1"
dependencies = [
"async-trait",
"crossbeam-channel",
"dashmap",
"fnv",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
2023-07-07 15:51:11 +02:00
"opentelemetry_api",
2022-04-14 08:07:59 +02:00
"percent-encoding",
2022-11-18 16:31:52 +01:00
"rand 0.8.5",
2022-04-14 08:07:59 +02:00
"thiserror",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-22 09:20:35 +02:00
"tokio-stream",
2022-04-14 08:07:59 +02:00
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
"dlv-list",
"hashbrown 0.12.3",
]
[[package]]
name = "os_str_bytes"
2023-07-07 15:53:43 +02:00
version = "6.5.1"
2023-06-03 13:31:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "4d5d9eb14b174ee9aa2ef96dc2b94637a2d4b6e7cb873c7e171f0c20c6cf3eac"
2023-06-03 13:31:57 +02:00
[[package]]
name = "ouroboros"
version = "0.15.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1358bd1558bd2a083fed428ffeda486fbfb323e698cdda7794259d592ca72db"
dependencies = [
"aliasable",
"ouroboros_macro",
]
[[package]]
name = "ouroboros_macro"
version = "0.15.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f7d21ccd03305a674437ee1248f3ab5d4b1db095cf1caf49f1713ddf61956b7"
dependencies = [
"Inflector",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2023-05-22 22:06:05 +02:00
[[package]]
name = "parking"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
2022-11-29 15:23:45 +01:00
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
2022-12-20 15:34:20 +01:00
"parking_lot_core 0.8.6",
2022-11-29 15:23:45 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "parking_lot"
2022-06-12 06:22:27 +02:00
version = "0.12.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-04-14 08:07:59 +02:00
dependencies = [
"lock_api",
2023-07-07 15:53:43 +02:00
"parking_lot_core 0.9.8",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "parking_lot_core"
2022-12-20 15:34:20 +01:00
version = "0.8.6"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 15:34:20 +01:00
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2022-11-29 15:23:45 +01:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-11-29 15:23:45 +01:00
"instant",
"libc",
2023-05-05 14:20:50 +02:00
"redox_syscall 0.2.16",
2022-11-29 15:23:45 +01:00
"smallvec",
2023-07-07 15:51:11 +02:00
"winapi",
2022-11-29 15:23:45 +01:00
]
[[package]]
name = "parking_lot_core"
2023-07-07 15:53:43 +02:00
version = "0.9.8"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"libc",
2023-07-07 15:53:43 +02:00
"redox_syscall 0.3.5",
2022-04-14 08:07:59 +02:00
"smallvec",
2023-07-07 15:53:43 +02:00
"windows-targets 0.48.1",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "password-hash"
2022-10-31 09:28:49 +01:00
version = "0.4.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
2022-04-14 08:07:59 +02:00
dependencies = [
"base64ct",
2022-11-18 16:31:52 +01:00
"rand_core 0.6.4",
2022-04-14 08:07:59 +02:00
"subtle",
]
[[package]]
name = "paste"
2023-07-07 15:53:43 +02:00
version = "1.0.13"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "b4b27ab7be369122c218afc2079489cdcb4b517c0a3fc386ff11e1fedfcc2b35"
2022-04-14 08:07:59 +02:00
2022-12-01 17:39:06 +01:00
[[package]]
2023-06-01 22:02:47 +02:00
name = "payment-adapter"
version = "0.1.0"
dependencies = [
"actix-web",
"async-trait",
"chrono",
"config",
2023-06-03 13:31:57 +02:00
"futures 0.3.28",
2023-06-01 22:02:47 +02:00
"model",
"serde",
"thiserror",
2023-07-07 15:53:43 +02:00
"toml 0.7.6",
2023-06-01 22:02:47 +02:00
"tracing",
"traitcast",
2023-07-07 15:53:43 +02:00
"uuid 1.4.0",
2023-06-01 22:02:47 +02:00
]
[[package]]
name = "payment-pay-u"
2022-12-01 17:39:06 +01:00
version = "0.1.0"
dependencies = [
2023-05-05 14:20:50 +02:00
"async-trait",
"bincode",
"chrono",
"common_macros",
"fulfillment_adapter",
2023-06-01 22:02:47 +02:00
"payment-adapter",
2023-05-05 14:20:50 +02:00
"serde",
"serde_json",
2023-05-25 15:56:15 +02:00
"thiserror",
2023-05-05 14:20:50 +02:00
"tracing",
]
[[package]]
2023-06-01 22:02:47 +02:00
name = "payment-stripe"
2023-05-05 14:20:50 +02:00
version = "0.1.0"
dependencies = [
2023-05-22 22:06:05 +02:00
"actix-web",
2023-06-01 22:02:47 +02:00
"async-stripe",
2023-05-05 14:20:50 +02:00
"async-trait",
2023-06-01 22:02:47 +02:00
"derive_more",
"fulfillment_adapter",
"payment-adapter",
2023-06-03 13:31:57 +02:00
"plugin-api",
2023-05-05 14:20:50 +02:00
"serde",
"thiserror",
2023-07-07 15:51:11 +02:00
"tokio",
2022-12-08 16:22:20 +01:00
"tracing",
2022-12-01 17:39:06 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "percent-encoding"
2023-07-07 15:53:43 +02:00
version = "2.3.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2022-04-14 08:07:59 +02:00
[[package]]
name = "pin-project"
2023-07-07 15:53:43 +02:00
version = "1.1.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-11-01 22:09:58 +01:00
"pin-project-internal",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "pin-project-internal"
2023-07-07 15:53:43 +02:00
version = "1.1.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "pin-project-lite"
2023-07-07 15:53:43 +02:00
version = "0.2.10"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
2022-04-14 08:07:59 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2023-05-05 14:20:50 +02:00
version = "0.3.27"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2022-05-20 16:08:49 +02:00
2023-06-01 22:02:47 +02:00
[[package]]
name = "plugin-api"
version = "0.1.0"
dependencies = [
"actix-web",
"async-trait",
2023-06-03 13:31:57 +02:00
"bincode",
"cache-adapter",
2023-06-01 22:02:47 +02:00
"config",
2023-06-03 13:31:57 +02:00
"derive_more",
"event-bus-adapter",
"file-storage-adapter",
"futures 0.3.28",
"payment-adapter",
"serde",
2023-06-01 22:02:47 +02:00
"thiserror",
"tracing",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "polling"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2023-06-03 13:31:57 +02:00
"bitflags",
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-06-03 13:31:57 +02:00
"concurrent-queue",
"libc",
"log",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-03 13:31:57 +02:00
"windows-sys 0.48.0",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "ppv-lite86"
2022-11-29 15:23:45 +01:00
version = "0.2.17"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 15:23:45 +01:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-04-14 08:07:59 +02:00
2022-11-29 15:23:45 +01:00
[[package]]
name = "proc-macro-crate"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
dependencies = [
2023-05-05 14:20:50 +02:00
"toml 0.5.11",
2022-11-29 15:23:45 +01:00
]
2022-12-05 06:04:14 +01:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
"version_check",
2022-12-05 06:04:14 +01:00
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"version_check",
2022-12-05 06:04:14 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "proc-macro2"
2023-07-07 15:53:43 +02:00
version = "1.0.63"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
2022-04-14 08:07:59 +02:00
dependencies = [
"unicode-ident",
2022-04-14 08:07:59 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "prost"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
dependencies = [
"bytes 1.4.0",
"prost-derive",
]
[[package]]
name = "prost-derive"
version = "0.11.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
dependencies = [
"anyhow",
2023-07-07 15:51:11 +02:00
"itertools",
2023-06-21 21:35:46 +02:00
"proc-macro2",
"quote",
"syn 1.0.109",
]
2022-11-29 15:23:45 +01:00
[[package]]
name = "ptr_meta"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
dependencies = [
"ptr_meta_derive",
]
[[package]]
name = "ptr_meta_derive"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
dependencies = [
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-11-29 15:23:45 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
2022-12-20 15:34:20 +01:00
name = "quanta"
version = "0.9.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 15:34:20 +01:00
checksum = "20afe714292d5e879d8b12740aa223c6a88f118af41870e8b6196e39a02238a8"
dependencies = [
"crossbeam-utils",
"libc",
"mach",
"once_cell",
"raw-cpuid",
"wasi 0.10.0+wasi-snapshot-preview1",
"web-sys",
2023-07-07 15:51:11 +02:00
"winapi",
2022-12-20 15:34:20 +01:00
]
2022-04-14 08:07:59 +02:00
2023-06-03 13:31:57 +02:00
[[package]]
name = "quick-xml"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
dependencies = [
"memchr",
"serde",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "quote"
2023-07-07 15:53:43 +02:00
version = "1.0.29"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "radium"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2023-05-22 22:06:05 +02:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
2023-07-07 15:51:11 +02:00
"rand_hc",
2023-05-22 22:06:05 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2022-11-18 16:31:52 +01:00
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-11-18 16:31:52 +01:00
"rand_core 0.6.4",
2022-04-14 08:07:59 +02:00
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "rand_core"
2022-10-31 09:28:49 +01:00
version = "0.6.4"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"getrandom 0.2.10",
2022-04-14 08:07:59 +02:00
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
2022-12-20 15:34:20 +01:00
[[package]]
name = "raw-cpuid"
2023-05-05 14:20:50 +02:00
version = "10.7.0"
2022-12-20 15:34:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
2022-12-20 15:34:20 +01:00
dependencies = [
"bitflags",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "rayon"
2023-05-05 14:20:50 +02:00
version = "1.7.0"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
2022-04-14 21:40:26 +02:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2023-05-05 14:20:50 +02:00
version = "1.11.0"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
2022-04-14 21:40:26 +02:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2023-06-01 10:41:58 +02:00
[[package]]
name = "redis"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ea8c51b5dc1d8e5fd3350ec8167f464ec0995e79f2e90a075b63371500d557f"
dependencies = [
"arc-swap",
"async-trait",
"bytes 1.4.0",
"combine",
2023-06-01 22:02:47 +02:00
"futures 0.3.28",
2023-06-01 10:41:58 +02:00
"futures-util",
2023-07-07 15:51:11 +02:00
"itoa",
2023-06-01 10:41:58 +02:00
"percent-encoding",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-01 10:41:58 +02:00
"ryu",
"sha1_smol",
2023-07-07 15:51:11 +02:00
"tokio",
"tokio-util",
2023-06-01 10:41:58 +02:00
"url",
]
2023-05-25 15:56:15 +02:00
[[package]]
name = "redis-async"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c70d5058251eb4b8acee55aad429a7a8a4ef2b61fe1f7be39ac6cfcd2934f334"
dependencies = [
"bytes 1.4.0",
"futures-channel",
"futures-sink",
"futures-util",
2023-05-25 15:56:15 +02:00
"log",
"pin-project",
2023-07-07 15:51:11 +02:00
"tokio",
"tokio-util",
2023-05-25 15:56:15 +02:00
]
2023-05-24 19:03:49 +02:00
[[package]]
2023-06-01 10:41:58 +02:00
name = "redis-async-pool"
version = "0.2.4"
2023-07-07 15:53:43 +02:00
source = "git+https://github.com/Eraden/redis-async-pool.git?branch=upgrade-dependencies#0e276aac2cf93f2b0c35cc120e100b4155433364"
2023-05-25 15:56:15 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"async-trait",
"deadpool",
"rand 0.8.5",
"redis",
2023-05-25 15:56:15 +02:00
]
2023-05-24 19:03:49 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "redox_syscall"
2022-10-31 09:28:49 +01:00
version = "0.2.16"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2022-04-14 08:07:59 +02:00
dependencies = [
"bitflags",
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2023-07-07 15:53:43 +02:00
"getrandom 0.2.10",
2023-05-05 14:20:50 +02:00
"redox_syscall 0.2.16",
2022-04-14 08:07:59 +02:00
"thiserror",
]
[[package]]
name = "regex"
2023-07-07 15:53:43 +02:00
version = "1.9.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484"
2022-04-14 08:07:59 +02:00
dependencies = [
"aho-corasick",
"memchr",
2023-07-07 15:53:43 +02:00
"regex-automata 0.3.0",
"regex-syntax 0.7.3",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-05-05 14:20:50 +02:00
"regex-syntax 0.6.29",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "regex-automata"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.7.3",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "regex-syntax"
2023-05-05 14:20:50 +02:00
version = "0.6.29"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-04-14 08:07:59 +02:00
2022-04-21 16:06:34 +02:00
[[package]]
2023-05-05 14:20:50 +02:00
name = "regex-syntax"
2023-07-07 15:53:43 +02:00
version = "0.7.3"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
2022-04-21 16:06:34 +02:00
2022-11-29 15:23:45 +01:00
[[package]]
name = "rend"
2023-05-05 14:20:50 +02:00
version = "0.4.0"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
2022-11-29 15:23:45 +01:00
dependencies = [
"bytecheck",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "reqwest"
2023-06-22 09:20:35 +02:00
version = "0.11.18"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 09:20:35 +02:00
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2022-04-18 22:07:52 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"base64 0.21.2",
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-18 22:07:52 +02:00
"encoding_rs",
"futures-core",
"futures-util",
2023-07-07 15:51:11 +02:00
"h2",
2022-04-18 22:07:52 +02:00
"http",
2023-07-07 15:51:11 +02:00
"http-body",
"hyper",
"hyper-tls",
2022-04-18 22:07:52 +02:00
"ipnet",
"js-sys",
"log",
"mime",
2022-04-21 16:06:34 +02:00
"native-tls",
2022-10-31 09:28:49 +01:00
"once_cell",
2022-04-18 22:07:52 +02:00
"percent-encoding",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-18 22:07:52 +02:00
"serde",
"serde_json",
2022-04-20 14:30:59 +02:00
"serde_urlencoded",
2023-07-07 15:51:11 +02:00
"tokio",
2022-04-21 16:06:34 +02:00
"tokio-native-tls",
2023-07-07 15:51:11 +02:00
"tokio-util",
2022-10-31 09:28:49 +01:00
"tower-service",
2022-04-18 22:07:52 +02:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
2023-06-03 13:31:57 +02:00
"wasm-streams",
2022-04-18 22:07:52 +02:00
"web-sys",
2023-07-07 15:51:11 +02:00
"winreg",
2022-04-14 08:07:59 +02:00
]
2023-06-01 10:41:58 +02:00
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2022-04-14 08:07:59 +02:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
2023-07-07 15:51:11 +02:00
"spin",
2022-04-14 08:07:59 +02:00
"untrusted",
"web-sys",
2023-07-07 15:51:11 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
2022-11-29 15:23:45 +01:00
[[package]]
name = "rkyv"
2023-07-07 15:53:43 +02:00
version = "0.7.42"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
2022-11-29 15:23:45 +01:00
dependencies = [
2023-07-07 15:53:43 +02:00
"bitvec",
2022-11-29 15:23:45 +01:00
"bytecheck",
"hashbrown 0.12.3",
"ptr_meta",
"rend",
"rkyv_derive",
"seahash",
2023-07-07 15:53:43 +02:00
"tinyvec",
"uuid 1.4.0",
2022-11-29 15:23:45 +01:00
]
[[package]]
name = "rkyv_derive"
2023-07-07 15:53:43 +02:00
version = "0.7.42"
2022-11-29 15:23:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
2022-11-29 15:23:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-11-29 15:23:45 +01:00
]
2023-06-11 16:21:13 +02:00
[[package]]
name = "ron"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
dependencies = [
"base64 0.13.1",
"bitflags",
"serde",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "rust-ini"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-06-03 13:31:57 +02:00
"ordered-multimap",
]
[[package]]
name = "rust-s3"
version = "0.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b2ac5ff6acfbe74226fa701b5ef793aaa054055c13ebb7060ad36942956e027"
dependencies = [
"async-trait",
"aws-creds",
"aws-region",
"base64 0.13.1",
"bytes 1.4.0",
2023-07-07 15:51:11 +02:00
"cfg-if",
2023-06-03 13:31:57 +02:00
"futures 0.3.28",
"hex",
"hmac",
"http",
"log",
"maybe-async",
"md5",
"minidom",
"percent-encoding",
"quick-xml",
2023-07-07 15:51:11 +02:00
"reqwest",
2023-06-03 13:31:57 +02:00
"serde",
"serde_derive",
"sha2",
"thiserror",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-03 13:31:57 +02:00
"tokio-stream",
"url",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "rust_decimal"
2023-07-07 15:53:43 +02:00
version = "1.30.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "d0446843641c69436765a35a5a77088e28c2e6a12da93e84aa3ab1cd4aa5a042"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"arrayvec",
2022-11-29 15:23:45 +01:00
"borsh",
"bytecheck",
"byteorder",
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"num-traits",
2022-11-29 15:23:45 +01:00
"rand 0.8.5",
"rkyv",
2022-04-14 08:07:59 +02:00
"serde",
2022-11-29 15:23:45 +01:00
"serde_json",
2022-04-14 08:07:59 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2022-04-14 08:07:59 +02:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2023-06-01 10:41:58 +02:00
"semver",
2022-04-18 22:07:52 +02:00
]
2022-12-08 16:22:20 +01:00
[[package]]
name = "rustix"
2023-07-07 15:53:43 +02:00
version = "0.37.23"
2022-12-08 16:22:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
2022-12-08 16:22:20 +01:00
dependencies = [
"bitflags",
2023-07-07 15:51:11 +02:00
"errno",
"io-lifetimes",
2022-12-08 16:22:20 +01:00
"libc",
2023-07-07 15:51:11 +02:00
"linux-raw-sys",
2023-05-05 14:20:50 +02:00
"windows-sys 0.48.0",
2022-12-08 16:22:20 +01:00
]
2022-12-01 17:39:06 +01:00
[[package]]
2022-12-05 06:04:14 +01:00
name = "rustls"
2023-05-05 14:20:50 +02:00
version = "0.20.8"
2022-12-01 17:39:06 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2022-12-01 17:39:06 +01:00
dependencies = [
2022-12-05 06:04:14 +01:00
"log",
"ring",
"sct",
"webpki",
2022-04-18 22:07:52 +02:00
]
2022-11-01 22:09:58 +01:00
[[package]]
name = "rustls-pemfile"
2023-07-07 15:53:43 +02:00
version = "1.0.3"
2022-11-01 22:09:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
2022-11-01 22:09:58 +01:00
dependencies = [
2023-07-07 15:53:43 +02:00
"base64 0.21.2",
2022-04-14 08:07:59 +02:00
]
2022-11-29 08:46:02 +01:00
[[package]]
name = "rustversion"
2023-07-07 15:53:43 +02:00
version = "1.0.13"
2022-11-29 08:46:02 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
2022-11-29 08:46:02 +01:00
2023-06-03 13:31:57 +02:00
[[package]]
name = "rxml"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a98f186c7a2f3abbffb802984b7f1dfd65dac8be1aafdaabbca4137f53f0dff7"
dependencies = [
"bytes 1.4.0",
"rxml_validation",
"smartstring",
]
[[package]]
name = "rxml_validation"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a197350ece202f19a166d1ad6d9d6de145e1d2a8ef47db299abe164dbd7530"
2022-04-14 08:07:59 +02:00
[[package]]
name = "ryu"
2023-07-07 15:53:43 +02:00
version = "1.0.14"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
2022-04-14 08:07:59 +02:00
2022-04-21 16:06:34 +02:00
[[package]]
name = "schannel"
2023-07-07 15:53:43 +02:00
version = "0.1.22"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2022-04-21 16:06:34 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"windows-sys 0.48.0",
2022-04-21 16:06:34 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2022-04-18 22:07:52 +02:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "sea-orm"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fade86e8d41fd1a4721f84cb834f4ca2783f973cc30e6212b7fafc134f169214"
dependencies = [
"async-stream",
"async-trait",
"futures 0.3.28",
"log",
"ouroboros",
"sea-orm-macros",
"sea-query",
"sea-query-binder",
"sea-strum",
"serde",
"sqlx",
"thiserror",
"tracing",
"url",
]
[[package]]
name = "sea-orm-cli"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbf34a2caf70c2e3be9bb1e674e9540f6dfd7c8f40f6f05daf3b9740e476005"
dependencies = [
"chrono",
2023-07-07 15:51:11 +02:00
"clap",
2023-06-03 13:31:57 +02:00
"dotenvy",
"regex",
"sea-schema",
"tracing",
"tracing-subscriber",
"url",
]
[[package]]
name = "sea-orm-macros"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28936f26d62234ff0be16f80115dbdeb3237fe9c25cf18fbcd1e3b3592360f20"
dependencies = [
"bae",
"heck 0.3.3",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "sea-orm-migration"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "278d3adfd0832b6ffc17d3cfbc574d3695a5c1b38814e0bc8ac238d33f3d87cf"
dependencies = [
"async-trait",
2023-07-07 15:51:11 +02:00
"clap",
2023-06-03 13:31:57 +02:00
"dotenvy",
"futures 0.3.28",
"sea-orm",
"sea-orm-cli",
"sea-schema",
"tracing",
"tracing-subscriber",
]
[[package]]
name = "sea-query"
version = "0.28.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbab99b8cd878ab7786157b7eb8df96333a6807cc6e45e8888c85b51534b401a"
dependencies = [
"sea-query-derive",
]
[[package]]
name = "sea-query-binder"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cea85029985b40dfbf18318d85fe985c04db7c1b4e5e8e0a0a0cdff5f1e30f9"
dependencies = [
"sea-query",
"sqlx",
]
[[package]]
name = "sea-query-derive"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63f62030c60f3a691f5fe251713b4e220b306e50a71e1d6f9cce1f24bb781978"
dependencies = [
"heck 0.4.1",
"proc-macro2",
"quote",
"syn 1.0.109",
"thiserror",
]
[[package]]
name = "sea-schema"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeb2940bb5a10bc6cd05b450ce6cd3993e27fddd7eface2becb97fc5af3a040e"
dependencies = [
"futures 0.3.28",
"sea-query",
"sea-schema-derive",
]
[[package]]
name = "sea-schema-derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56821b7076f5096b8f726e2791ad255a99c82498e08ec477a65a96c461ff1927"
dependencies = [
"heck 0.3.3",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "sea-strum"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "391d06a6007842cfe79ac6f7f53911b76dfd69fc9a6769f1cf6569d12ce20e1b"
dependencies = [
"sea-strum_macros",
]
[[package]]
name = "sea-strum_macros"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69b4397b825df6ccf1e98bcdabef3bbcfc47ff5853983467850eeab878384f21"
dependencies = [
"heck 0.3.3",
"proc-macro2",
"quote",
"rustversion",
"syn 1.0.109",
]
2022-11-29 15:23:45 +01:00
[[package]]
name = "seahash"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2022-04-21 16:06:34 +02:00
[[package]]
name = "security-framework"
2023-07-07 15:53:43 +02:00
version = "2.9.1"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2022-04-21 16:06:34 +02:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-07-07 15:53:43 +02:00
version = "2.9.0"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2022-04-21 16:06:34 +02:00
dependencies = [
"core-foundation-sys",
"libc",
]
2022-12-05 06:04:14 +01:00
[[package]]
name = "semver"
2023-05-05 14:20:50 +02:00
version = "1.0.17"
2022-12-05 06:04:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2022-12-05 06:04:14 +01:00
2023-05-25 23:51:26 +02:00
[[package]]
2023-06-01 10:41:58 +02:00
name = "serde"
2023-07-07 15:53:43 +02:00
version = "1.0.167"
2023-05-25 23:51:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "7daf513456463b42aa1d94cff7e0c24d682b429f020b9afa4f5ba5c40a22b237"
2023-05-25 23:51:26 +02:00
dependencies = [
2023-06-01 10:41:58 +02:00
"serde_derive",
2023-05-25 23:51:26 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "serde_derive"
2023-07-07 15:53:43 +02:00
version = "1.0.167"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "b69b106b68bc8054f0e974e70d19984040f8a5cf9215ca82626ea4853f82c4b9"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "serde_json"
2023-07-07 15:53:43 +02:00
version = "1.0.100"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
"ryu",
"serde",
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "serde_path_to_error"
2023-07-07 15:53:43 +02:00
version = "0.1.13"
2023-05-22 22:06:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "8acc4422959dd87a76cb117c191dcbffc20467f06c9100b76721dab370f24d3a"
2023-05-22 22:06:05 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"itoa",
2023-05-22 22:06:05 +02:00
"serde",
]
[[package]]
name = "serde_qs"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_qs"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa"
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "serde_spanned"
2023-07-07 15:53:43 +02:00
version = "0.6.3"
2023-05-05 14:20:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
2023-05-05 14:20:50 +02:00
dependencies = [
"serde",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
2023-07-07 15:51:11 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
"ryu",
"serde",
]
[[package]]
2022-10-31 09:28:49 +01:00
name = "sha1"
version = "0.10.5"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cpufeatures",
2023-06-01 10:41:58 +02:00
"digest",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sha2"
2023-07-07 15:53:43 +02:00
version = "0.10.7"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cpufeatures",
2023-06-01 10:41:58 +02:00
"digest",
2022-04-14 08:07:59 +02:00
]
2022-05-01 17:20:31 +02:00
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "signal-hook-registry"
2023-05-05 14:20:50 +02:00
version = "1.4.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "simdutf8"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
2022-11-11 16:32:07 +01:00
[[package]]
name = "similar"
2022-11-29 15:23:45 +01:00
version = "2.2.1"
2022-11-11 16:32:07 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 15:23:45 +01:00
checksum = "420acb44afdae038210c99e69aae24109f32f15500aa708e81d46c9f29d55fcf"
2022-11-11 16:32:07 +01:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "slab"
2023-05-05 14:20:50 +02:00
version = "0.4.8"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-10-31 09:28:49 +01:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2022-10-31 09:28:49 +01:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "smallvec"
2023-07-07 15:53:43 +02:00
version = "1.11.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
2022-04-14 08:07:59 +02:00
2023-05-22 22:06:05 +02:00
[[package]]
name = "smart-default"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-06-03 13:31:57 +02:00
[[package]]
name = "smartstring"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2023-06-03 13:31:57 +02:00
"static_assertions",
"version_check",
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "smol_str"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9"
dependencies = [
"serde",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "socket2"
2023-05-05 14:20:50 +02:00
version = "0.4.9"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
2023-07-07 15:51:11 +02:00
"winapi",
2022-05-05 16:30:25 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "sqlformat"
2023-05-05 14:20:50 +02:00
version = "0.2.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"itertools",
2022-12-20 15:34:20 +01:00
"nom",
2022-04-14 08:07:59 +02:00
"unicode_categories",
]
[[package]]
name = "sqlx"
2023-05-05 14:20:50 +02:00
version = "0.6.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"sqlx-core 0.6.3",
2022-04-14 08:07:59 +02:00
"sqlx-macros",
]
[[package]]
name = "sqlx-core"
2023-05-05 14:20:50 +02:00
version = "0.6.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-05-05 14:20:50 +02:00
"ahash 0.7.6",
2023-07-07 15:53:43 +02:00
"atoi 1.0.0",
2022-12-20 15:34:20 +01:00
"base64 0.13.1",
2022-04-14 08:07:59 +02:00
"bigdecimal",
"bit-vec",
"bitflags",
"bstr",
"byteorder",
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"chrono",
"crc",
"crossbeam-queue",
2023-07-07 15:51:11 +02:00
"dirs",
2022-10-31 09:28:49 +01:00
"dotenvy",
2022-04-14 08:07:59 +02:00
"either",
2022-04-16 18:58:59 +02:00
"event-listener",
"futures-channel",
"futures-core",
2023-07-07 15:53:43 +02:00
"futures-intrusive 0.4.2",
"futures-util",
2022-04-14 08:07:59 +02:00
"git2",
"hashlink",
"hex",
2023-06-01 10:41:58 +02:00
"hkdf",
"hmac",
2023-07-07 15:53:43 +02:00
"indexmap 1.9.3",
2022-04-14 08:07:59 +02:00
"ipnetwork",
2023-07-07 15:51:11 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
"libc",
"log",
"mac_address",
"md-5",
"memchr",
"num-bigint",
"once_cell",
"paste",
"percent-encoding",
2022-11-18 16:31:52 +01:00
"rand 0.8.5",
2022-04-14 08:07:59 +02:00
"rust_decimal",
2023-07-07 15:51:11 +02:00
"rustls",
2023-05-05 14:20:50 +02:00
"rustls-pemfile",
2022-04-14 08:07:59 +02:00
"serde",
"serde_json",
2023-06-01 10:41:58 +02:00
"sha1",
"sha2",
2022-04-14 08:07:59 +02:00
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2022-04-14 08:07:59 +02:00
"tokio-stream",
"url",
2023-07-07 15:53:43 +02:00
"uuid 1.4.0",
2022-10-31 09:28:49 +01:00
"webpki-roots",
2022-04-14 08:07:59 +02:00
"whoami",
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "sqlx-core"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a22fd81e9c1ad53c562edb869ff042b215d4eadefefc4784bacfbfd19835945"
dependencies = [
"ahash 0.8.3",
"atoi 2.0.0",
"byteorder",
"bytes 1.4.0",
"crossbeam-queue",
"dotenvy",
"either",
"event-listener",
"futures-channel",
"futures-core",
"futures-intrusive 0.5.0",
"futures-io",
"futures-util",
"hashlink",
"hex",
"indexmap 2.0.0",
"log",
"memchr",
"once_cell",
"paste",
"percent-encoding",
"smallvec",
"sqlformat",
"thiserror",
"tracing",
"url",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "sqlx-macros"
2023-05-05 14:20:50 +02:00
version = "0.6.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"dotenvy",
2022-04-14 08:07:59 +02:00
"either",
2023-05-05 14:20:50 +02:00
"heck 0.4.1",
2022-04-14 08:07:59 +02:00
"once_cell",
"proc-macro2",
"quote",
"serde_json",
2023-06-01 10:41:58 +02:00
"sha2",
2023-07-07 15:53:43 +02:00
"sqlx-core 0.6.3",
2022-04-14 08:07:59 +02:00
"sqlx-rt",
2023-05-05 14:20:50 +02:00
"syn 1.0.109",
2022-04-14 08:07:59 +02:00
"url",
]
[[package]]
name = "sqlx-rt"
2023-05-05 14:20:50 +02:00
version = "0.6.3"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024"
2022-04-14 08:07:59 +02:00
dependencies = [
"once_cell",
2023-07-07 15:51:11 +02:00
"tokio",
2022-10-31 09:28:49 +01:00
"tokio-rustls",
2022-04-14 08:07:59 +02:00
]
2022-11-03 07:02:33 +01:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
2022-04-14 08:07:59 +02:00
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-04-14 08:07:59 +02:00
[[package]]
name = "subtle"
2023-07-07 15:53:43 +02:00
version = "2.5.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2022-04-14 08:07:59 +02:00
[[package]]
name = "syn"
2023-05-05 14:20:50 +02:00
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2023-07-07 15:53:43 +02:00
version = "2.0.23"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2022-04-14 08:07:59 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2023-07-07 15:53:43 +02:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2023-06-22 09:20:35 +02:00
[[package]]
name = "telemetry-plugin"
version = "0.1.0"
dependencies = [
"async-trait",
2023-07-07 15:51:11 +02:00
"opentelemetry",
2023-06-22 09:20:35 +02:00
"opentelemetry-otlp",
2023-07-07 15:51:11 +02:00
"opentelemetry-semantic-conventions",
2023-06-22 09:20:35 +02:00
"plugin-api",
"serde",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-22 09:20:35 +02:00
"tracing",
"tracing-bunyan-formatter",
2023-07-07 15:51:11 +02:00
"tracing-opentelemetry",
2023-06-22 09:20:35 +02:00
"tracing-subscriber",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "tempfile"
2023-07-07 15:53:43 +02:00
version = "3.6.0"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
2022-04-21 16:06:34 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"autocfg",
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-21 16:06:34 +02:00
"fastrand",
2023-05-05 14:20:50 +02:00
"redox_syscall 0.3.5",
2023-07-07 15:51:11 +02:00
"rustix",
2023-07-07 15:53:43 +02:00
"windows-sys 0.48.0",
2022-04-21 16:06:34 +02:00
]
2022-11-11 16:32:07 +01:00
[[package]]
2023-05-05 14:20:50 +02:00
name = "termcolor"
version = "1.2.0"
2022-11-11 16:32:07 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2022-11-11 16:32:07 +01:00
dependencies = [
2023-05-05 14:20:50 +02:00
"winapi-util",
2022-11-11 16:32:07 +01:00
]
2022-06-05 21:03:22 +02:00
[[package]]
name = "testx"
version = "0.1.0"
2023-06-03 13:31:57 +02:00
[[package]]
name = "textwrap"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
2022-04-14 08:07:59 +02:00
[[package]]
name = "thiserror"
2023-07-07 15:53:43 +02:00
version = "1.0.43"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
2022-04-14 08:07:59 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-07-07 15:53:43 +02:00
version = "1.0.43"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "thread_local"
2023-05-05 14:20:50 +02:00
version = "1.1.7"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"once_cell",
]
[[package]]
name = "time"
2022-11-29 15:23:45 +01:00
version = "0.1.45"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-29 15:23:45 +01:00
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
2022-10-31 09:28:49 +01:00
"wasi 0.10.0+wasi-snapshot-preview1",
2023-07-07 15:51:11 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "time"
2023-07-07 15:53:43 +02:00
version = "0.3.22"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"itoa",
2022-10-31 09:28:49 +01:00
"serde",
"time-core",
2023-06-01 10:41:58 +02:00
"time-macros",
2022-04-14 08:07:59 +02:00
]
[[package]]
2022-10-31 09:28:49 +01:00
name = "time-core"
2023-07-07 15:53:43 +02:00
version = "0.1.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2022-04-14 08:07:59 +02:00
[[package]]
name = "time-macros"
2023-07-07 15:53:43 +02:00
version = "0.2.9"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"time-core",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "tinyvec"
2022-04-29 20:37:41 +02:00
version = "1.6.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 20:37:41 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2022-04-14 08:07:59 +02:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-05-05 14:20:50 +02:00
version = "0.1.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-04-14 08:07:59 +02:00
[[package]]
name = "tokio"
2023-07-07 15:53:43 +02:00
version = "1.29.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"autocfg",
2023-07-07 15:53:43 +02:00
"backtrace",
2023-05-05 14:20:50 +02:00
"bytes 1.4.0",
2022-04-14 08:07:59 +02:00
"libc",
2023-07-07 15:51:11 +02:00
"mio",
2022-04-14 08:07:59 +02:00
"num_cpus",
2022-11-29 15:23:45 +01:00
"parking_lot 0.12.1",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"signal-hook-registry",
2023-07-07 15:51:11 +02:00
"socket2",
2022-04-16 18:57:37 +02:00
"tokio-macros",
2023-05-05 14:20:50 +02:00
"windows-sys 0.48.0",
2022-04-14 08:07:59 +02:00
]
2023-06-01 22:02:47 +02:00
[[package]]
name = "tokio-io"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"log",
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "tokio-io-timeout"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
dependencies = [
2023-07-07 15:51:11 +02:00
"pin-project-lite",
"tokio",
2023-06-21 21:35:46 +02:00
]
2022-04-16 18:57:37 +02:00
[[package]]
name = "tokio-macros"
2023-05-05 14:20:50 +02:00
version = "2.1.0"
2022-04-16 18:57:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2022-04-16 18:57:37 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-16 18:57:37 +02:00
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "tokio-native-tls"
2023-05-05 14:20:50 +02:00
version = "0.3.1"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2022-04-21 16:06:34 +02:00
dependencies = [
"native-tls",
2023-07-07 15:51:11 +02:00
"tokio",
2022-04-21 16:06:34 +02:00
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "tokio-rustls"
2022-05-09 16:17:27 +02:00
version = "0.23.4"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2022-04-18 22:07:52 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"rustls",
"tokio",
2022-10-31 09:28:49 +01:00
"webpki",
2022-04-14 08:07:59 +02:00
]
[[package]]
2023-07-07 15:51:11 +02:00
name = "tokio-stream"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:51:11 +02:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
"futures-core",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
"tokio",
]
2023-06-22 09:20:35 +02:00
[[package]]
2023-07-07 15:51:11 +02:00
name = "tokio-util"
version = "0.7.8"
2023-06-22 09:20:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:51:11 +02:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2023-06-22 09:20:35 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"bytes 1.4.0",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
2023-06-22 09:20:35 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
2023-07-07 15:51:11 +02:00
name = "toml"
version = "0.5.11"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:51:11 +02:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"serde",
2023-05-05 14:20:50 +02:00
]
[[package]]
name = "toml"
2023-07-07 15:53:43 +02:00
version = "0.7.6"
2023-05-05 14:20:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
2023-05-05 14:20:50 +02:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
2023-07-07 15:53:43 +02:00
version = "0.6.3"
2023-05-05 14:20:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2023-05-05 14:20:50 +02:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2023-07-07 15:53:43 +02:00
version = "0.19.12"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "c500344a19072298cd05a7224b3c0c629348b78692bf48466c5238656e315a78"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"indexmap 2.0.0",
2022-04-14 08:07:59 +02:00
"serde",
2023-05-05 14:20:50 +02:00
"serde_spanned",
"toml_datetime",
"winnow",
2022-04-14 08:07:59 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "tonic"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
dependencies = [
"async-stream",
"async-trait",
"axum",
"base64 0.13.1",
"bytes 1.4.0",
"futures-core",
"futures-util",
2023-07-07 15:51:11 +02:00
"h2",
2023-06-21 21:35:46 +02:00
"http",
2023-07-07 15:51:11 +02:00
"http-body",
"hyper",
2023-06-21 21:35:46 +02:00
"hyper-timeout",
"percent-encoding",
"pin-project",
"prost",
"prost-derive",
2023-07-07 15:51:11 +02:00
"tokio",
2023-06-21 21:35:46 +02:00
"tokio-stream",
2023-07-07 15:51:11 +02:00
"tokio-util",
2023-06-21 21:35:46 +02:00
"tower",
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
2023-07-07 15:53:43 +02:00
"indexmap 1.9.3",
2023-06-21 21:35:46 +02:00
"pin-project",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2023-06-21 21:35:46 +02:00
"rand 0.8.5",
"slab",
2023-07-07 15:51:11 +02:00
"tokio",
"tokio-util",
2023-06-21 21:35:46 +02:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2022-04-18 22:07:52 +02:00
[[package]]
name = "tower-service"
2022-10-31 09:28:49 +01:00
version = "0.3.2"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2022-04-18 22:07:52 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "tracing"
2022-10-31 09:28:49 +01:00
version = "0.1.37"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"log",
2023-07-07 15:51:11 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-07-07 15:53:43 +02:00
version = "0.1.26"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "tracing-bunyan-formatter"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25a348912d4e90923cb93343691d3be97e3409607363706c400fc935bb032fb0"
dependencies = [
"ahash 0.8.3",
"gethostname",
"log",
"serde",
"serde_json",
2023-07-07 15:53:43 +02:00
"time 0.3.22",
2023-06-21 21:35:46 +02:00
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tracing-core"
2023-07-07 15:53:43 +02:00
version = "0.1.31"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-06-12 06:22:27 +02:00
"once_cell",
"valuable",
]
2022-12-05 06:04:14 +01:00
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
2023-06-22 09:20:35 +02:00
[[package]]
name = "tracing-opentelemetry"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00a39dcf9bfc1742fa4d6215253b33a6e474be78275884c216fc2a06267b3600"
dependencies = [
"async-trait",
"once_cell",
2023-07-07 15:51:11 +02:00
"opentelemetry",
2023-06-22 09:20:35 +02:00
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
2022-11-03 07:02:33 +01:00
[[package]]
name = "tracing-subscriber"
2023-05-05 14:20:50 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [
"matchers",
2022-10-31 09:28:49 +01:00
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
2022-12-20 15:34:20 +01:00
name = "tracing-timing"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 15:34:20 +01:00
checksum = "fbe4966d7b6ae25201de6ff9fa822afb0c9e933809187d5b82ad846ec108771b"
dependencies = [
2022-12-20 15:34:20 +01:00
"crossbeam",
"doc-comment",
"fxhash",
"hdrhistogram",
2023-07-07 15:53:43 +02:00
"indexmap 1.9.3",
2022-12-20 15:34:20 +01:00
"quanta",
"slab",
"tracing-core",
"tracing-subscriber",
2022-04-14 08:07:59 +02:00
]
2023-05-15 22:55:09 +02:00
[[package]]
name = "traitcast"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f80b1cde694e5ff2dcb33875530f2f031a9a34dec8ba2744cacaf80a88658740"
dependencies = [
"inventory",
"lazy_static",
"traitcast_core",
]
[[package]]
name = "traitcast_core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aabba8f4a83963f61a84d8cfc5829b4fad692aa6c6ad5d7b08b9549777e3cc4a"
dependencies = [
"anymap",
"inventory",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "try-lock"
2023-05-05 14:20:50 +02:00
version = "0.2.4"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-04-18 22:07:52 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "typenum"
2022-12-09 16:33:35 +01:00
version = "1.16.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-09 16:33:35 +01:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2022-04-14 08:07:59 +02:00
[[package]]
name = "unicode-bidi"
2023-05-05 14:20:50 +02:00
version = "0.3.13"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-04-14 08:07:59 +02:00
[[package]]
name = "unicode-ident"
2023-07-07 15:53:43 +02:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
2022-04-14 08:07:59 +02:00
[[package]]
name = "unicode-normalization"
2022-10-31 09:28:49 +01:00
version = "0.1.22"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2022-04-14 08:07:59 +02:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2023-05-05 14:20:50 +02:00
version = "1.10.1"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2022-10-31 09:28:49 +01:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2023-05-05 14:20:50 +02:00
[[package]]
name = "unidecode"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "402bb19d8e03f1d1a7450e2bd613980869438e0666331be3e073089124aa1adc"
2022-04-14 08:07:59 +02:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
2023-07-07 15:53:43 +02:00
version = "2.4.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
2022-04-14 08:07:59 +02:00
dependencies = [
"form_urlencoded",
2023-07-07 15:53:43 +02:00
"idna",
2022-04-14 08:07:59 +02:00
"percent-encoding",
2023-05-22 22:06:05 +02:00
"serde",
2022-04-14 08:07:59 +02:00
]
2023-06-21 21:35:46 +02:00
[[package]]
name = "urlencoding"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
2022-04-14 08:07:59 +02:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
2023-07-07 15:53:43 +02:00
"getrandom 0.2.10",
2022-04-14 08:07:59 +02:00
]
2022-05-15 10:30:15 +02:00
[[package]]
name = "uuid"
2023-07-07 15:53:43 +02:00
version = "1.4.0"
2022-05-15 10:30:15 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
2022-05-15 10:30:15 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"atomic",
2023-07-07 15:53:43 +02:00
"getrandom 0.2.10",
2022-10-31 09:28:49 +01:00
"md-5",
"serde",
"sha1_smol",
2022-05-15 10:30:15 +02:00
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "validator"
2023-07-07 15:53:43 +02:00
version = "0.16.1"
2022-05-06 11:47:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "b92f40481c04ff1f4f61f304d61793c7b56ff76ac1469f1beb199b1445b253bd"
2022-05-06 11:47:18 +02:00
dependencies = [
2023-07-07 15:53:43 +02:00
"idna",
2022-05-06 11:47:18 +02:00
"lazy_static",
"regex",
"serde",
"serde_derive",
"serde_json",
"url",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2023-06-03 13:31:57 +02:00
[[package]]
name = "value-bag"
2023-07-07 15:53:43 +02:00
version = "1.4.1"
2023-06-03 13:31:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3"
2023-06-03 13:31:57 +02:00
2022-04-14 08:07:59 +02:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2023-05-22 22:06:05 +02:00
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2022-04-18 22:07:52 +02:00
[[package]]
name = "want"
2023-07-07 15:53:43 +02:00
version = "0.3.1"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2022-04-18 22:07:52 +02:00
dependencies = [
"try-lock",
]
2023-05-22 22:06:05 +02:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2022-12-08 16:22:20 +01:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2022-04-14 08:07:59 +02:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-07-07 15:53:43 +02:00
version = "0.2.87"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2022-04-14 08:07:59 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-07-07 15:53:43 +02:00
version = "0.2.87"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2022-04-14 08:07:59 +02:00
dependencies = [
"bumpalo",
"log",
2022-10-31 09:28:49 +01:00
"once_cell",
2022-04-14 08:07:59 +02:00
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
"wasm-bindgen-shared",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "wasm-bindgen-futures"
2023-07-07 15:53:43 +02:00
version = "0.4.37"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2022-04-18 22:07:52 +02:00
dependencies = [
2023-07-07 15:51:11 +02:00
"cfg-if",
2022-04-18 22:07:52 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "wasm-bindgen-macro"
2023-07-07 15:53:43 +02:00
version = "0.2.87"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2022-04-14 08:07:59 +02:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-07-07 15:53:43 +02:00
version = "0.2.87"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-07-07 15:53:43 +02:00
"syn 2.0.23",
2022-04-14 08:07:59 +02:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-07-07 15:53:43 +02:00
version = "0.2.87"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2022-04-14 08:07:59 +02:00
2023-06-03 13:31:57 +02:00
[[package]]
name = "wasm-streams"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "web-sys"
2023-07-07 15:53:43 +02:00
version = "0.3.64"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2022-04-14 08:07:59 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "webpki-roots"
2022-12-20 15:34:20 +01:00
version = "0.22.6"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 15:34:20 +01:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2022-04-18 22:07:52 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"webpki",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "whoami"
2023-07-07 15:53:43 +02:00
version = "1.4.1"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
2022-04-14 08:07:59 +02:00
dependencies = [
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2023-07-07 15:51:11 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-05-05 14:20:50 +02:00
[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
2023-07-07 15:53:43 +02:00
"windows-targets 0.48.1",
2023-05-05 14:20:50 +02:00
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-07-07 15:53:43 +02:00
"windows-targets 0.48.1",
2023-05-05 14:20:50 +02:00
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
2023-07-07 15:53:43 +02:00
version = "0.48.1"
2023-05-05 14:20:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2023-05-05 14:20:50 +02:00
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
2022-10-31 09:28:49 +01:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_aarch64_msvc"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_i686_gnu"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_i686_msvc"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_x86_64_gnu"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_x86_64_msvc"
2023-05-05 14:20:50 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
[[package]]
name = "winnow"
2023-07-07 15:53:43 +02:00
version = "0.4.8"
2022-10-31 09:28:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 15:53:43 +02:00
checksum = "a9482fe6ceabdf32f3966bfdd350ba69256a97c30253dc616fe0005af24f164e"
2023-05-05 14:20:50 +02:00
dependencies = [
"memchr",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
2023-07-07 15:51:11 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
2023-07-07 15:53:43 +02:00
[[package]]
name = "wyz"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
dependencies = [
"tap",
]
2022-11-11 16:32:07 +01:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "zstd"
version = "0.12.3+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
dependencies = [
2023-07-07 15:51:11 +02:00
"zstd-safe",
2022-04-14 08:07:59 +02:00
]
2023-05-05 14:20:50 +02:00
[[package]]
name = "zstd-safe"
version = "6.0.5+zstd.1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
dependencies = [
"libc",
"zstd-sys",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "zstd-sys"
2023-05-05 14:20:50 +02:00
version = "2.0.8+zstd.1.5.5"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-05 14:20:50 +02:00
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
2023-05-05 14:20:50 +02:00
"pkg-config",
2022-04-14 08:07:59 +02:00
]