bazzar/Cargo.lock

5232 lines
120 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
2022-05-19 16:13:27 +02:00
[[package]]
name = "account_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
2022-11-01 22:09:58 +01:00
"bincode",
"bytes",
"channels",
2022-05-19 16:13:27 +02:00
"config",
2022-11-01 22:09:58 +01:00
"dotenv",
2022-11-03 07:02:33 +01:00
"futures 0.3.25",
"gumdrop",
2022-11-03 07:02:33 +01:00
"json",
2022-05-19 16:13:27 +02:00
"model",
"opentelemetry 0.17.0",
"opentelemetry-jaeger",
2022-05-19 16:13:27 +02:00
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-22 14:19:11 +02:00
"serde",
2022-11-04 18:40:14 +01:00
"sqlx",
"sqlx-core",
2022-11-03 07:02:33 +01:00
"tarpc",
2022-05-19 16:13:27 +02:00
"thiserror",
2022-11-01 22:09:58 +01:00
"tokio",
"tracing",
"tracing-opentelemetry",
2022-11-01 22:09:58 +01:00
"tracing-subscriber",
2022-05-19 16:13:27 +02:00
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "actix"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3720d0064a0ce5c0de7bd93bdb0a6caebab2a9b5668746145d7b3b0c5da02914"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-rt",
2022-04-14 21:40:26 +02:00
"bitflags",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 21:40:26 +02:00
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
"parking_lot 0.11.2",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 21:40:26 +02:00
"smallvec",
2022-04-20 14:30:59 +02:00
"tokio",
2022-06-12 06:22:27 +02:00
"tokio-util 0.6.10",
2022-04-14 21:40:26 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "actix"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f728064aca1c318585bf4bb04ffcfac9e75e508ab4e8b1bd9ba5dfe04e2cbed5"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-rt",
2022-04-14 08:07:59 +02:00
"actix_derive",
"bitflags",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"smallvec",
2022-04-20 14:30:59 +02:00
"tokio",
2022-10-31 09:28:49 +01:00
"tokio-util 0.7.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-broker"
2022-06-12 06:22:27 +02:00
version = "0.4.3"
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 = "e089b5c4d0cf02d72a9eca0b6c80aebff1ccd3d1e99c83d1f7b9baeff39dc5e9"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-14 21:40:26 +02:00
"actix 0.13.0",
2022-10-31 09:28:49 +01:00
"ahash",
2022-04-14 08:07:59 +02:00
"log",
]
[[package]]
name = "actix-codec"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
dependencies = [
"bitflags",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"futures-core",
"futures-sink",
"log",
"memchr",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
"tokio",
2022-10-31 09:28:49 +01:00
"tokio-util 0.7.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-cors"
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 = "b340e9cfa5b08690aae90fb61beb44e9b06f44fe3d0f93781aaa58cfba86245e"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-utils",
"actix-web",
2022-04-14 08:07:59 +02:00
"derive_more",
"futures-util",
"log",
"once_cell",
"smallvec",
]
[[package]]
name = "actix-files"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "d832782fac6ca7369a70c9ee9a20554623c5e51c76e190ad151780ebea1cf689"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-http",
"actix-service",
"actix-utils",
"actix-web",
2022-04-14 08:07:59 +02:00
"askama_escape",
"bitflags",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"derive_more",
"futures-core",
"http-range",
"log",
"mime",
"mime_guess",
"percent-encoding",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-http"
2022-10-31 09:28:49 +01:00
version = "3.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 = "0c83abf9903e1f0ad9973cc4f7b9767fd5a03a583f51a5b7a339e07987cd2724"
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",
2022-10-31 09:28:49 +01:00
"ahash",
2022-04-20 14:30:59 +02:00
"base64",
2022-04-14 08:07:59 +02:00
"bitflags",
"brotli",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2022-04-20 14:30:59 +02:00
"h2",
2022-04-14 08:07:59 +02:00
"http",
"httparse",
"httpdate",
2022-04-20 14:30:59 +02:00
"itoa",
"language-tags",
2022-04-14 08:07:59 +02:00
"local-channel",
"mime",
"percent-encoding",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
"rand",
2022-10-31 09:28:49 +01:00
"sha1",
2022-04-14 08:07:59 +02:00
"smallvec",
2022-10-31 09:28:49 +01:00
"tracing",
2022-04-14 08:07:59 +02:00
"zstd",
]
[[package]]
name = "actix-identity"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "171fe3ed055b2dd50c61967911d253d47e76e1d4308acfbf99fc7affe5ec42aa"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-service",
"actix-utils",
"actix-web",
2022-04-14 08:07:59 +02:00
"futures-util",
"serde",
"serde_json",
2022-10-31 09:28:49 +01:00
"time 0.3.16",
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",
"syn",
]
[[package]]
name = "actix-multipart"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-utils",
"actix-web",
"bytes",
2022-04-14 08:07:59 +02:00
"derive_more",
"futures-core",
"httparse",
"local-waker",
"log",
"mime",
"twoway",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "actix-redis"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dde9fa8bde15d084d459eb59f766c08d00a6f550e7054187878fc9cbaa19115"
dependencies = [
"actix 0.12.0",
2022-04-20 14:30:59 +02:00
"actix-rt",
"actix-service",
"actix-tls",
"actix-web",
2022-04-14 21:40:26 +02:00
"backoff",
"derive_more",
"futures-core",
"log",
"redis-async",
2022-10-31 09:28:49 +01:00
"time 0.3.16",
2022-04-20 14:30:59 +02:00
"tokio",
2022-06-12 06:22:27 +02:00
"tokio-util 0.6.10",
2022-04-14 21:40:26 +02:00
]
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"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-macros",
2022-04-14 08:07:59 +02:00
"futures-core",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-server"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-rt",
"actix-service",
"actix-utils",
2022-04-14 08:07:59 +02:00
"futures-core",
"futures-util",
2022-10-31 09:28:49 +01:00
"mio 0.8.5",
2022-04-14 08:07:59 +02:00
"num_cpus",
2022-04-20 14:30:59 +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",
"paste",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "actix-session"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c9138a66462f1e65da829f9c0de81b44a96dfe193a4f19bfea32ee2be312368"
dependencies = [
"actix 0.12.0",
"actix-redis",
2022-04-20 14:30:59 +02:00
"actix-service",
"actix-utils",
"actix-web",
2022-04-14 21:40:26 +02:00
"anyhow",
"async-trait",
"derive_more",
"futures-core",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-14 21:40:26 +02:00
"serde",
"serde_json",
2022-10-31 09:28:49 +01:00
"time 0.3.16",
2022-04-14 21:40:26 +02:00
"tracing",
]
[[package]]
name = "actix-tls"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2022-04-14 21:40:26 +02:00
"futures-core",
"log",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-10-31 09:28:49 +01:00
"tokio-util 0.7.4",
2022-04-14 21:40:26 +02:00
]
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",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "actix-web"
2022-10-31 09:28:49 +01:00
version = "4.2.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 = "d48f7b6534e06c7bfc72ee91db7917d4af6afe23e7d223b51e68fffbb21e96b9"
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",
2022-10-31 09:28:49 +01:00
"ahash",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"bytestring",
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-10-31 09:28:49 +01:00
"http",
2022-04-20 14:30:59 +02:00
"itoa",
"language-tags",
2022-04-14 08:07:59 +02:00
"log",
"mime",
"once_cell",
2022-04-20 14:30:59 +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",
2022-04-20 14:30:59 +02:00
"socket2",
2022-10-31 09:28:49 +01:00
"time 0.3.16",
2022-04-14 08:07:59 +02:00
"url",
]
[[package]]
name = "actix-web-codegen"
2022-10-31 09:28:49 +01:00
version = "4.1.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 = "1fa9362663c8643d67b2d5eafba49e4cb2c8a053a29ed00a0bea121f17c76b13"
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",
"syn",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "actix-web-httpauth"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08c25a48b4684f90520183cd1a688e5f4f7e9905835fa75d02c0fe4f60fcdbe6"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-service",
"actix-utils",
"actix-web",
"base64",
2022-04-18 22:07:52 +02:00
"futures-core",
"futures-util",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-18 22:07:52 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "actix-web-opentelemetry"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "503ff1136a085f39fc9fd96818a5e9c7ab58ccd36682f3cfc32a001d01cc3a50"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-http",
"actix-web",
2022-04-14 08:07:59 +02:00
"futures-util",
"opentelemetry 0.17.0",
"opentelemetry-semantic-conventions 0.9.0",
2022-04-14 08:07:59 +02:00
"serde",
]
[[package]]
name = "actix_derive"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d44b8fee1ced9671ba043476deddef739dd0959bf77030b26b738cc591737a7"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "addr2line"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
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 = "aead"
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 = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"crypto-common",
"generic-array",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "aes"
2022-10-31 09:28:49 +01:00
version = "0.8.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 = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"cipher",
"cpufeatures",
]
[[package]]
name = "aes-gcm"
2022-10-31 09:28:49 +01:00
version = "0.10.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 = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c"
2022-04-14 08:07:59 +02:00
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
2022-04-20 14:30:59 +02:00
"getrandom",
2022-04-14 08:07:59 +02:00
"once_cell",
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "aho-corasick"
2022-10-31 09:28:49 +01:00
version = "0.7.19"
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 = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
2022-04-14 08:07:59 +02:00
dependencies = [
"memchr",
]
[[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",
]
[[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"
2022-10-31 09:28:49 +01:00
version = "1.0.66"
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 = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
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",
"password-hash",
"rayon",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]]
name = "askama_escape"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
[[package]]
name = "async-trait"
2022-10-31 09:28:49 +01:00
version = "0.1.58"
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 = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[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]]
name = "atomic"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
dependencies = [
"autocfg",
]
[[package]]
name = "atomic_immut"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b9fcea66a65a49890058406499cca8906e4e9cd1173bfeb272dcd2ac603e4fa"
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 = [
"hermit-abi",
"libc",
"winapi 0.3.9",
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"
2022-04-14 21:40:26 +02:00
[[package]]
name = "backoff"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
dependencies = [
2022-04-20 14:30:59 +02:00
"getrandom",
2022-04-14 21:40:26 +02:00
"instant",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-14 08:07:59 +02:00
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "backtrace"
2022-10-31 09:28:49 +01:00
version = "0.3.66"
2022-05-08 09:47:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
2022-05-08 09:47:05 +02:00
dependencies = [
"addr2line",
"cc",
"cfg-if 1.0.0",
2022-05-08 09:47:05 +02:00
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
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
[[package]]
name = "base64ct"
2022-10-31 09:28:49 +01:00
version = "1.5.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 = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf"
2022-04-14 08:07:59 +02:00
[[package]]
name = "bazzar"
version = "0.1.0"
dependencies = [
2022-04-14 21:40:26 +02:00
"actix 0.13.0",
2022-04-14 08:07:59 +02:00
"actix-broker",
"actix-cors",
"actix-files",
2022-04-20 14:30:59 +02:00
"actix-identity",
2022-04-14 08:07:59 +02:00
"actix-multipart",
2022-04-14 21:40:26 +02:00
"actix-redis",
2022-04-20 14:30:59 +02:00
"actix-rt",
2022-04-14 21:40:26 +02:00
"actix-session",
2022-04-20 14:30:59 +02:00
"actix-web",
2022-04-18 22:07:52 +02:00
"actix-web-httpauth",
2022-04-14 08:07:59 +02:00
"actix-web-opentelemetry",
2022-04-19 16:49:30 +02:00
"async-trait",
"bytes",
"channels",
2022-04-14 08:07:59 +02:00
"chrono",
2022-05-06 11:47:18 +02:00
"config",
"database_manager",
2022-04-14 08:07:59 +02:00
"derive_more",
"dotenv",
2022-05-06 16:02:38 +02:00
"fs_manager",
2022-10-31 09:28:49 +01:00
"futures 0.3.25",
2022-04-16 18:57:37 +02:00
"futures-util",
2022-04-14 21:40:26 +02:00
"gumdrop",
2022-05-08 09:47:05 +02:00
"human-panic",
2022-05-11 15:56:41 +02:00
"include_dir",
2022-04-20 14:30:59 +02:00
"jemallocator",
2022-05-06 11:47:18 +02:00
"model",
2022-04-18 22:07:52 +02:00
"oauth2",
2022-05-06 11:47:18 +02:00
"order_manager",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-05-06 11:47:18 +02:00
"payment_manager",
2022-04-14 08:07:59 +02:00
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-06 11:47:18 +02:00
"search_manager",
2022-04-14 08:07:59 +02:00
"serde",
"serde_json",
"sqlx",
2022-04-17 23:11:58 +02:00
"sqlx-core",
"tarpc",
2022-04-14 08:07:59 +02:00
"tera",
2022-04-14 21:40:26 +02:00
"thiserror",
2022-05-06 11:47:18 +02:00
"token_manager",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-14 08:07:59 +02:00
"toml",
"tracing",
"tracing-subscriber",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
"validator 0.14.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "bigdecimal"
2022-10-31 09:28:49 +01:00
version = "0.3.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 = "6aaf33151a6429fe9211d1b276eafdf70cdff28b071e76c0b0e1503221ea3744"
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"
2022-04-14 21:40:26 +02:00
[[package]]
name = "blake2"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9cf849ee05b2ee5fba5e36f97ff8ec2533916700fc0758d40d92136a42f3388"
dependencies = [
2022-10-31 09:28:49 +01:00
"digest",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "block-buffer"
2022-10-31 09:28:49 +01:00
version = "0.10.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 = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
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
]
[[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"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
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"
2022-10-31 09:28:49 +01:00
version = "3.11.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 = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
2022-04-14 08:07:59 +02:00
[[package]]
name = "bytecodec"
version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adf4c9d0bbf32eea58d7c0f812058138ee8edaf0f2802b6d03561b504729a325"
dependencies = [
"byteorder",
"trackable 0.2.24",
]
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"
[[package]]
name = "bytes"
2022-10-31 09:28:49 +01:00
version = "1.2.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 = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2022-04-14 08:07:59 +02:00
[[package]]
name = "bytestring"
2022-10-31 09:28:49 +01:00
version = "1.1.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 = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "cart_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"channels",
2022-05-06 11:47:18 +02:00
"chrono",
"config",
2022-11-04 18:40:14 +01:00
"dotenv",
"futures 0.3.25",
2022-05-06 11:47:18 +02:00
"model",
2022-11-04 18:40:14 +01:00
"opentelemetry 0.17.0",
"opentelemetry-jaeger",
2022-05-06 11:47:18 +02:00
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-22 14:19:11 +02:00
"serde",
2022-11-04 18:40:14 +01:00
"sqlx",
"sqlx-core",
"tarpc",
2022-05-06 11:47:18 +02:00
"thiserror",
2022-11-04 18:40:14 +01:00
"tokio",
"tracing",
2022-11-04 18:40:14 +01:00
"tracing-opentelemetry",
"tracing-subscriber",
2022-05-15 10:30:15 +02:00
"uuid 0.8.2",
2022-05-06 11:47:18 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "cc"
2022-10-31 09:28:49 +01:00
version = "1.0.74"
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 = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
2022-04-14 08:07:59 +02:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2022-04-14 08:07:59 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "channels"
version = "0.1.0"
dependencies = [
"bincode",
"bytes",
"config",
2022-11-05 01:08:45 +01:00
"futures 0.3.25",
"model",
"rumqttc",
"serde",
"tarpc",
"thiserror",
2022-11-05 01:08:45 +01:00
"tokio",
"tracing",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "chrono"
2022-10-31 09:28:49 +01:00
version = "0.4.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 = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
2022-04-14 08:07:59 +02:00
dependencies = [
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-integer",
"num-traits",
"serde",
2022-10-31 09:28:49 +01:00
"time 0.1.44",
2022-05-15 10:30:15 +02:00
"wasm-bindgen",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "chrono-tz"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
2022-04-14 08:07:59 +02:00
dependencies = [
"chrono",
"chrono-tz-build",
"phf",
]
[[package]]
name = "chrono-tz-build"
2022-10-31 09:28:49 +01:00
version = "0.0.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 = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
2022-04-14 08:07:59 +02:00
dependencies = [
"parse-zoneinfo",
"phf",
"phf_codegen",
]
[[package]]
name = "cipher"
2022-10-31 09:28:49 +01:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
dependencies = [
"crypto-common",
"inout",
]
[[package]]
name = "codespan-reporting"
version = "0.11.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 = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"termcolor",
"unicode-width",
2022-04-14 08:07:59 +02:00
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "config"
version = "0.1.0"
dependencies = [
"actix-web",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-05-06 11:47:18 +02:00
"password-hash",
"pay_u",
"serde",
"serde_json",
"thiserror",
"toml",
"tracing",
2022-05-06 11:47:18 +02:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "console_error_panic_hook"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
dependencies = [
"cfg-if 1.0.0",
2022-05-05 16:30:25 +02:00
"wasm-bindgen",
]
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-10-31 09:28:49 +01:00
version = "0.16.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 = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917"
2022-04-14 08:07:59 +02:00
dependencies = [
"aes-gcm",
2022-04-20 14:30:59 +02:00
"base64",
2022-04-14 08:07:59 +02:00
"hkdf",
2022-04-16 18:58:59 +02:00
"hmac",
2022-04-14 08:07:59 +02:00
"percent-encoding",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-14 08:07:59 +02:00
"subtle",
2022-10-31 09:28:49 +01:00
"time 0.3.16",
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
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"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2022-04-14 08:07:59 +02:00
[[package]]
name = "cpufeatures"
2022-10-31 09:28:49 +01:00
version = "0.2.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 = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
]
[[package]]
name = "crc"
2022-10-31 09:28:49 +01:00
version = "3.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 = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
2022-04-14 08:07:59 +02:00
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
2022-10-31 09:28:49 +01:00
version = "2.1.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 = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
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 = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "crossbeam-channel"
2022-10-31 09:28:49 +01:00
version = "0.5.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 = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"crossbeam-utils",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "crossbeam-deque"
2022-10-31 09:28:49 +01:00
version = "0.8.2"
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 = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
2022-04-14 21:40:26 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 21:40:26 +02:00
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2022-10-31 09:28:49 +01:00
version = "0.9.11"
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 = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
2022-04-14 21:40:26 +02:00
dependencies = [
"autocfg",
"cfg-if 1.0.0",
2022-04-14 21:40:26 +02:00
"crossbeam-utils",
"memoffset",
"scopeguard",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "crossbeam-queue"
2022-10-31 09:28:49 +01:00
version = "0.3.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 = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2022-10-31 09:28:49 +01:00
version = "0.8.12"
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 = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
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",
"rand_core",
2022-04-14 08:07:59 +02:00
"typenum",
]
[[package]]
name = "ctr"
2022-10-31 09:28:49 +01:00
version = "0.9.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 = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
2022-04-14 08:07:59 +02:00
dependencies = [
"cipher",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "cxx"
version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a"
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827"
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a"
[[package]]
name = "cxxbridge-macro"
version = "1.0.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "darling"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
dependencies = [
"darling_core",
"quote",
"syn",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "data-encoding"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
2022-05-06 11:47:18 +02:00
[[package]]
name = "database_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"async-trait",
2022-05-06 11:47:18 +02:00
"chrono",
"config",
2022-05-06 16:02:38 +02:00
"fake",
2022-05-08 14:59:59 +02:00
"itertools",
2022-05-06 11:47:18 +02:00
"model",
"pretty_env_logger",
2022-05-06 16:02:38 +02:00
"rand",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-22 14:19:11 +02:00
"serde",
2022-05-06 11:47:18 +02:00
"sqlx",
"sqlx-core",
2022-06-05 21:03:22 +02:00
"testx",
2022-05-06 11:47:18 +02:00
"thiserror",
"tracing",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "db-seed"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"actix-web",
"bytes",
2022-05-06 16:02:38 +02:00
"config",
"database_manager",
"dotenv",
"fake",
2022-05-08 09:47:05 +02:00
"fs_manager",
"human-panic",
2022-05-06 16:02:38 +02:00
"model",
2022-05-08 09:47:05 +02:00
"password-hash",
2022-05-06 16:02:38 +02:00
"rand",
2022-05-08 09:47:05 +02:00
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
2022-05-06 16:02:38 +02:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "dbg"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4677188513e0e9d7adced5997cf9a1e7a3c996c994f90093325c5332c1a8b221"
dependencies = [
"version_check 0.1.5",
]
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",
"rustc_version 0.4.0",
"syn",
]
[[package]]
name = "deunicode"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
[[package]]
name = "digest"
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 = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01: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",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
[[package]]
2022-10-31 09:28:49 +01:00
name = "displaydoc"
version = "0.2.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 = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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"
version = "0.15.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03d8c417d7a8cb362e0c37e5d815f5eb7c37f79ff93707329d5a194e42e54ca0"
2022-05-06 16:02:38 +02:00
[[package]]
name = "dummy"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bf5ff6f74150b0bbb6e6057718a903b3d8f3fc7096c9190fc162ca99d3b2273"
dependencies = [
"darling",
"quote",
"syn",
]
[[package]]
name = "educe"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb0188e3c3ba8df5753894d54461f0e39bc91741dc5b22e1c46999ec2c71f4e4"
dependencies = [
"enum-ordinalize",
"proc-macro2",
"quote",
"syn",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "either"
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 = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
2022-04-14 08:07:59 +02:00
2022-05-06 11:47:18 +02:00
[[package]]
name = "email_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
2022-11-05 01:08:45 +01:00
"channels",
2022-05-06 11:47:18 +02:00
"chrono",
"config",
2022-11-05 01:08:45 +01:00
"dotenv",
"handlebars",
2022-05-06 11:47:18 +02:00
"model",
2022-11-05 01:08:45 +01:00
"opentelemetry 0.17.0",
"opentelemetry-jaeger",
2022-05-06 11:47:18 +02:00
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-06 11:47:18 +02:00
"sendgrid",
2022-05-09 16:17:27 +02:00
"serde",
"serde_json",
2022-11-05 01:08:45 +01:00
"tarpc",
2022-05-06 11:47:18 +02:00
"thiserror",
2022-11-05 01:08:45 +01:00
"tokio",
"tracing",
2022-11-05 01:08:45 +01:00
"tracing-opentelemetry",
"tracing-subscriber",
2022-05-15 10:30:15 +02:00
"uuid 0.8.2",
2022-05-06 11:47:18 +02:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "enclose"
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1056f553da426e9c025a662efa48b52e62e0a3a7648aa2d15aeaaf7f0d329357"
2022-04-14 08:07:59 +02:00
[[package]]
name = "encoding_rs"
version = "0.8.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "enum-ordinalize"
version = "3.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62bb1df8b45ecb7ffa78dca1c17a438fb193eb083db0b1b494d2a61bcb5096a"
dependencies = [
"num-bigint",
"num-traits",
"proc-macro2",
"quote",
"rustc_version 0.4.0",
"syn",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
2022-11-03 07:02:33 +01:00
"humantime 1.3.0",
2022-04-14 08:07:59 +02:00
"log",
"regex",
"termcolor",
]
2022-04-16 18:58:59 +02:00
[[package]]
name = "event-listener"
2022-10-31 09:28:49 +01:00
version = "2.5.3"
2022-04-16 18:58:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2022-04-16 18:58:59 +02:00
[[package]]
name = "factory"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73a3579e5ac964dd11bed8ba3932ee51b48ce652ee12e49c61a78a268bbc9b2c"
2022-05-06 16:02:38 +02:00
[[package]]
name = "fake"
2022-10-31 09:28:49 +01:00
version = "2.5.0"
2022-05-06 16:02:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "4d68f517805463f3a896a9d29c1d6ff09d3579ded64a7201b4069f8f9c0d52fd"
2022-05-06 16:02:38 +02:00
dependencies = [
"chrono",
"dummy",
"http",
"rand",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 16:02:38 +02:00
]
2022-04-20 16:25:52 +02:00
[[package]]
name = "fastrand"
2022-10-31 09:28:49 +01:00
version = "1.8.0"
2022-04-20 16:25:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
2022-04-20 16:25:52 +02:00
dependencies = [
"instant",
]
[[package]]
name = "fibers"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cce97d737d7eda3d2e8a907892b4c4fdd3857cb6f18b58047645011c5a0b46e7"
dependencies = [
"futures 0.1.31",
"mio 0.6.23",
"nbchan",
"num_cpus",
"splay_tree",
]
[[package]]
name = "fibers_rpc"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56413f3c95f2a93aaf579d1f549ac4043b8a2ed5f37e7fd5d3d32be58ef88691"
dependencies = [
"atomic_immut",
"bytecodec",
"byteorder",
"factory",
"fibers",
"fibers_tasque",
"futures 0.1.31",
"prometrics",
"slog",
"trackable 0.2.24",
]
[[package]]
name = "fibers_tasque"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "504278fcd15ae0c70acf6dcf85c8b4e16cb0c8e71f7d8a0ef8d560b116f21cac"
dependencies = [
"fibers",
"futures 0.1.31",
"lazy_static",
"tasque",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "flate2"
2022-06-12 06:22:27 +02:00
version = "1.0.24"
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 = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2022-04-14 08:07:59 +02:00
dependencies = [
"crc32fast",
2022-04-20 14:30:59 +02:00
"miniz_oxide",
2022-04-14 08:07:59 +02:00
]
2022-05-22 14:19:11 +02:00
[[package]]
name = "fluent"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7"
dependencies = [
"fluent-bundle",
"unic-langid",
]
[[package]]
name = "fluent-bundle"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd"
dependencies = [
"fluent-langneg",
"fluent-syntax",
"intl-memoizer",
"intl_pluralrules",
"rustc-hash",
"self_cell",
"smallvec",
"unic-langid",
]
[[package]]
name = "fluent-langneg"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94"
dependencies = [
"unic-langid",
]
[[package]]
name = "fluent-syntax"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78"
dependencies = [
"thiserror",
]
2022-11-01 22:09:58 +01:00
[[package]]
name = "flume"
version = "0.10.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
"spin 0.9.4",
]
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"
2022-10-31 09:28:49 +01:00
version = "1.1.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 = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2022-04-14 08:07:59 +02:00
dependencies = [
"percent-encoding",
]
[[package]]
2022-04-20 14:30:59 +02:00
name = "fs_extra"
version = "1.2.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-20 14:30:59 +02:00
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
2022-04-14 08:07:59 +02:00
2022-05-06 11:47:18 +02:00
[[package]]
name = "fs_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"actix-web",
"bytes",
2022-05-06 11:47:18 +02:00
"chrono",
"config",
"fibers_rpc",
2022-05-06 11:47:18 +02:00
"model",
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-22 14:19:11 +02:00
"serde",
2022-05-06 11:47:18 +02:00
"thiserror",
"tokio",
"tracing",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[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"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-executor"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
2022-10-31 09:28:49 +01:00
version = "0.4.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 = "1b6bdbb8c5a42b2bb5ee8dd9dc2c7d73ce3e15d26dfe100fb347ffa3f58c672b"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
"lock_api",
2022-10-31 09:28:49 +01:00
"parking_lot 0.12.1",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "futures-io"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-macro"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-task"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures-util"
2022-10-31 09:28:49 +01:00
version = "0.3.25"
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 = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2022-10-31 09:28:49 +01:00
version = "0.14.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 = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2022-04-14 08:07:59 +02:00
dependencies = [
"typenum",
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "getrandom"
2022-10-31 09:28:49 +01:00
version = "0.2.8"
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 = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-18 22:07:52 +02:00
"js-sys",
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-18 22:07:52 +02:00
"wasm-bindgen",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "ghash"
2022-10-31 09:28:49 +01:00
version = "0.5.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 = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"opaque-debug",
2022-04-14 08:07:59 +02:00
"polyval",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "gimli"
2022-10-31 09:28:49 +01:00
version = "0.26.2"
2022-05-08 09:47:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
2022-05-08 09:47:05 +02:00
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",
]
[[package]]
name = "globset"
2022-06-12 06:22:27 +02:00
version = "0.4.9"
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 = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
2022-04-14 08:07:59 +02:00
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
[[package]]
name = "globwalk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
dependencies = [
"bitflags",
"ignore",
"walkdir",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "gloo-events"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68b107f8abed8105e4182de63845afcc7b69c098b7852a813ea7462a320992fc"
dependencies = [
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "gloo-file"
2022-10-31 09:28:49 +01:00
version = "0.2.3"
2022-05-05 16:30:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "a8d5564e570a38b43d78bdc063374a0c3098c4f0d64005b12f9bbe87e869b6d7"
2022-05-05 16:30:25 +02:00
dependencies = [
"futures-channel",
"gloo-events",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "gloo-timers"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "gloo-utils"
2022-10-31 09:28:49 +01:00
version = "0.1.5"
2022-05-05 16:30:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "40913a05c8297adca04392f707b1e73b12ba7b8eab7244a4961580b1fd34063c"
2022-05-05 16:30:25 +02:00
dependencies = [
"js-sys",
2022-10-31 09:28:49 +01:00
"serde",
"serde_json",
2022-05-05 16:30:25 +02:00
"wasm-bindgen",
"web-sys",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "gumdrop"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bc700f989d2f6f0248546222d9b4258f5b02a171a431f8285a81c08142629e3"
dependencies = [
"gumdrop_derive",
]
[[package]]
name = "gumdrop_derive"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "729f9bd3449d77e7831a18abfb7ba2f99ee813dfd15b8c2167c9a54ba20aa99d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "h2"
2022-10-31 09:28:49 +01:00
version = "0.3.15"
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 = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2022-04-20 14:30:59 +02:00
"tokio",
2022-10-31 09:28:49 +01:00
"tokio-util 0.7.4",
2022-04-14 08:07:59 +02:00
"tracing",
]
2022-11-05 01:08:45 +01:00
[[package]]
name = "handlebars"
version = "4.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "433e4ab33f1213cdc25b5fa45c76881240cfe79284cf2b395e8b9e312a30a2fd"
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
"serde_json",
"thiserror",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "hashbrown"
2022-10-31 09:28:49 +01:00
version = "0.12.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 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"ahash",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "hashlink"
2022-10-31 09:28:49 +01:00
version = "0.8.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 = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"hashbrown",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "heck"
2022-04-16 18:58:59 +02:00
version = "0.4.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-16 18:58:59 +02:00
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
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",
]
[[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 = [
2022-04-16 18:58:59 +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 = [
2022-10-31 09:28:49 +01:00
"digest",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "http"
2022-06-12 06:22:27 +02:00
version = "0.2.8"
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 = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"fnv",
2022-04-20 14:30:59 +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 = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-18 22:07:52 +02:00
"http",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-18 22:07:52 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "http-range"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
[[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-05-08 09:47:05 +02:00
[[package]]
name = "human-panic"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39f357a500abcbd7c5f967c1d45c8838585b36743823b9d43488f24850534e36"
dependencies = [
"backtrace",
"os_type",
"serde",
"serde_derive",
"termcolor",
"toml",
2022-05-15 10:30:15 +02:00
"uuid 0.8.2",
2022-05-08 09:47:05 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "humansize"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026"
[[package]]
name = "humantime"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
dependencies = [
"quick-error",
]
2022-11-03 07:02:33 +01:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2022-04-18 22:07:52 +02:00
[[package]]
name = "hyper"
2022-10-31 09:28:49 +01:00
version = "0.14.20"
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 = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
2022-04-18 22:07:52 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-18 22:07:52 +02:00
"futures-channel",
"futures-core",
"futures-util",
2022-04-20 14:30:59 +02:00
"h2",
2022-04-18 22:07:52 +02:00
"http",
"http-body",
"httparse",
"httpdate",
2022-04-20 14:30:59 +02:00
"itoa",
"pin-project-lite",
"socket2",
"tokio",
2022-04-18 22:07:52 +02:00
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
dependencies = [
"http",
"hyper",
2022-10-31 09:28:49 +01:00
"rustls",
2022-04-20 14:30:59 +02:00
"tokio",
2022-10-31 09:28:49 +01:00
"tokio-rustls",
2022-04-18 22:07:52 +02:00
]
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 = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "iana-time-zone"
version = "0.1.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"winapi 0.3.9",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
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"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "ignore"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
dependencies = [
"crossbeam-utils",
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2022-05-11 15:56:41 +02:00
[[package]]
name = "include_dir"
2022-10-31 09:28:49 +01:00
version = "0.7.3"
2022-05-11 15:56:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e"
2022-05-11 15:56:41 +02:00
dependencies = [
"include_dir_macros",
]
[[package]]
name = "include_dir_macros"
2022-10-31 09:28:49 +01:00
version = "0.7.3"
2022-05-11 15:56:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f"
2022-05-11 15:56:41 +02:00
dependencies = [
"proc-macro2",
"quote",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "indexmap"
2022-10-31 09:28:49 +01:00
version = "1.9.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 = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2022-04-14 08:07:59 +02:00
dependencies = [
"autocfg",
2022-10-31 09:28:49 +01:00
"hashbrown",
2022-05-05 16:30:25 +02:00
"serde",
2022-04-14 08:07:59 +02:00
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
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 = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "integer-encoding"
version = "3.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2022-05-22 14:19:11 +02:00
[[package]]
name = "intl-memoizer"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f"
dependencies = [
"type-map",
"unic-langid",
]
[[package]]
name = "intl_pluralrules"
2022-10-31 09:28:49 +01:00
version = "7.0.2"
2022-05-22 14:19:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
2022-05-22 14:19:11 +02:00
dependencies = [
"unic-langid",
]
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "ipnet"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2022-04-14 08:07:59 +02:00
[[package]]
name = "ipnetwork"
2022-10-31 09:28:49 +01:00
version = "0.19.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 = "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",
]
[[package]]
name = "itoa"
2022-10-31 09:28:49 +01:00
version = "1.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 = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
2022-04-20 14:30:59 +02:00
[[package]]
name = "jemalloc-sys"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d3b9f3f5c9b31aa0f5ed3260385ac205db665baa41d49bb8338008ae94ede45"
dependencies = [
"cc",
"fs_extra",
"libc",
]
2022-04-14 08:07:59 +02:00
[[package]]
2022-04-20 14:30:59 +02:00
name = "jemallocator"
version = "0.3.2"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-20 14:30:59 +02:00
checksum = "43ae63fcfc45e99ab3d1b29a46782ad679e98436c3169d15a167a1108a724b69"
dependencies = [
"jemalloc-sys",
"libc",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "jobserver"
2022-10-31 09:28:49 +01:00
version = "0.1.25"
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 = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2022-10-31 09:28:49 +01:00
version = "0.3.60"
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 = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
2022-04-14 08:07:59 +02:00
dependencies = [
"wasm-bindgen",
]
2022-11-03 07:02:33 +01:00
[[package]]
name = "json"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
2022-04-18 22:07:52 +02:00
[[package]]
name = "jwt"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f"
dependencies = [
2022-04-20 14:30:59 +02:00
"base64",
2022-04-18 22:07:52 +02:00
"crypto-common",
2022-10-31 09:28:49 +01:00
"digest",
2022-04-18 22:07:52 +02:00
"hmac",
"serde",
"serde_json",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-18 22:07:52 +02:00
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2022-05-22 14:19:11 +02:00
[[package]]
name = "lang_provider"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"config",
"fluent",
"model",
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-22 14:19:11 +02:00
"thiserror",
"tracing",
2022-05-22 14:19:11 +02:00
"unic-langid",
]
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"
2022-10-31 09:28:49 +01:00
version = "0.2.137"
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 = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
2022-04-14 08:07:59 +02:00
[[package]]
name = "libgit2-sys"
2022-10-31 09:28:49 +01:00
version = "0.13.4+1.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 = "d0fa6563431ede25f5cc7f6d803c6afbc1c5d3ad3d4925d12c882bf2b526f5d1"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
]
[[package]]
name = "libz-sys"
2022-06-12 06:22:27 +02:00
version = "1.1.8"
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 = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "link-cplusplus"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
dependencies = [
"cc",
]
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",
"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"
2022-10-31 09:28:49 +01:00
version = "0.4.9"
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 = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-04-14 08:07:59 +02:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2022-05-06 11:47:18 +02:00
version = "0.4.17"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-06 11:47:18 +02:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "mac_address"
2022-10-31 09:28:49 +01:00
version = "1.1.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 = "b238e3235c8382b7653c6408ed1b08dd379bdb9fdf990fb0bbae3db2cc0ae963"
2022-04-14 08:07:59 +02:00
dependencies = [
"nix",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[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 = [
2022-10-31 09:28:49 +01:00
"digest",
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 = [
"autocfg",
]
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2022-10-31 09:28:49 +01:00
version = "0.5.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 = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2022-04-14 08:07:59 +02:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
dependencies = [
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "mio"
2022-10-31 09:28:49 +01:00
version = "0.8.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 = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
2022-10-31 09:28:49 +01:00
"windows-sys 0.42.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "miow"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
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",
2022-05-08 09:47:05 +02:00
"password-hash",
2022-05-06 16:02:38 +02:00
"rand",
2022-05-08 09:47:05 +02:00
"rand_core",
2022-05-06 11:47:18 +02:00
"serde",
"sqlx",
"sqlx-core",
"thiserror",
"tracing",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
"validator 0.15.0",
]
2022-11-01 22:09:58 +01:00
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "native-tls"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "nbchan"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b1d61edb4e941c69f2a74782b3dc4a388adeab2d8cc1fe29e8ef8d2a7f9760"
[[package]]
name = "net2"
2022-10-31 09:28:49 +01:00
version = "0.2.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
dependencies = [
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "nix"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
dependencies = [
"bitflags",
"cc",
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"libc",
"memoffset",
]
[[package]]
name = "nom"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf51a729ecf40266a2368ad335a5fdde43471f545a967109cd62146ecf8b66ff"
2022-04-14 08:07:59 +02:00
[[package]]
name = "nom"
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
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",
"winapi 0.3.9",
]
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 = [
"autocfg",
"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 = [
"autocfg",
"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 = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "num_threads"
2022-05-09 16:17:27 +02:00
version = "0.1.6"
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 = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "oauth2"
2022-10-31 09:28:49 +01:00
version = "4.2.3"
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 = "6d62c436394991641b970a92e23e8eeb4eb9bca74af4f5badc53bcd568daadbd"
2022-04-18 22:07:52 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"base64",
2022-04-18 22:07:52 +02:00
"chrono",
2022-04-20 14:30:59 +02:00
"getrandom",
2022-04-18 22:07:52 +02:00
"http",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-18 22:07:52 +02:00
"reqwest",
"serde",
"serde_json",
"serde_path_to_error",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-18 22:07:52 +02:00
"thiserror",
"url",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "object"
2022-10-31 09:28:49 +01:00
version = "0.29.0"
2022-05-08 09:47:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
2022-05-08 09:47:05 +02:00
dependencies = [
"memchr",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "once_cell"
2022-10-31 09:28:49 +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-10-31 09:28:49 +01:00
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2022-04-14 08:07:59 +02:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openapi"
version = "1.0.0"
dependencies = [
"reqwest",
"serde",
"serde_derive",
"serde_json",
"url",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "openssl"
2022-10-31 09:28:49 +01:00
version = "0.10.42"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13"
2022-04-21 16:06:34 +02:00
dependencies = [
"bitflags",
"cfg-if 1.0.0",
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"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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"
2022-10-31 09:28:49 +01:00
version = "0.9.77"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "b03b84c3b2d099b81f0953422b4d4ad58761589d0229b5506356afca05a3670a"
2022-04-21 16:06:34 +02:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "opentelemetry"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
"js-sys",
"lazy_static",
"percent-encoding",
2022-11-01 22:09:58 +01:00
"pin-project",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-14 08:07:59 +02:00
"thiserror",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-14 08:07:59 +02:00
"tokio-stream",
]
[[package]]
name = "opentelemetry"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e"
dependencies = [
"opentelemetry_api",
"opentelemetry_sdk",
]
[[package]]
name = "opentelemetry-jaeger"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e785d273968748578931e4dc3b4f5ec86b26e09d9e0d66b55adda7fce742f7a"
dependencies = [
"async-trait",
"futures 0.3.25",
"futures-executor",
"once_cell",
"opentelemetry 0.18.0",
"opentelemetry-semantic-conventions 0.10.0",
"thiserror",
"thrift",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "opentelemetry-semantic-conventions"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "985cc35d832d412224b2cffe2f9194b1b89b6aa5d0bef76d080dce09d90e62bd"
dependencies = [
"opentelemetry 0.17.0",
]
[[package]]
name = "opentelemetry-semantic-conventions"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b02e0230abb0ab6636d18e2ba8fa02903ea63772281340ccac18e0af3ec9eeb"
dependencies = [
"opentelemetry 0.18.0",
]
[[package]]
name = "opentelemetry_api"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22"
dependencies = [
"futures-channel",
"futures-util",
"indexmap",
"js-sys",
"once_cell",
"pin-project-lite",
"thiserror",
]
[[package]]
name = "opentelemetry_sdk"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113"
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"percent-encoding",
"rand",
"thiserror",
2022-04-14 08:07:59 +02:00
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "order_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"chrono",
"config",
"database_manager",
"model",
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-22 14:19:11 +02:00
"serde",
2022-05-06 11:47:18 +02:00
"thiserror",
"tracing",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
]
[[package]]
name = "ordered-float"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7"
dependencies = [
"num-traits",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "os_type"
2022-10-31 09:28:49 +01:00
version = "2.6.0"
2022-05-08 09:47:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "e24d44c0eea30167516ed8f6daca4b5e3eebcde1bde1e4e6e08b809fb02c7ba5"
2022-05-08 09:47:05 +02:00
dependencies = [
"regex",
]
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"
2022-04-14 08:07:59 +02: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",
"parking_lot_core 0.8.5",
]
[[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",
2022-10-31 09:28:49 +01:00
"parking_lot_core 0.9.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "parking_lot_core"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "parking_lot_core"
2022-10-31 09:28:49 +01:00
version = "0.9.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 = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"libc",
"redox_syscall",
"smallvec",
2022-10-31 09:28:49 +01:00
"windows-sys 0.42.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "parse-zoneinfo"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
dependencies = [
"regex",
]
[[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-04-20 14:30:59 +02:00
"rand_core",
2022-04-14 08:07:59 +02:00
"subtle",
]
[[package]]
name = "paste"
2022-10-31 09:28:49 +01:00
version = "1.0.9"
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 = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
2022-04-14 08:07:59 +02:00
2022-04-24 14:29:59 +02:00
[[package]]
name = "pay_u"
2022-04-29 20:46:10 +02:00
version = "0.1.9"
2022-04-29 20:37:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 20:46:10 +02:00
checksum = "71c9728962c794530dd3e728dd1ad23326dcbfbea34442f2cb0f789ba5e7a112"
2022-04-21 16:06:34 +02:00
dependencies = [
"chrono",
2022-04-26 19:55:50 +02:00
"derive_more",
2022-04-24 12:55:22 +02:00
"log",
2022-04-22 22:15:00 +02:00
"reqwest",
2022-04-21 16:06:34 +02:00
"serde",
"serde_json",
"thiserror",
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "payment_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"chrono",
"config",
"database_manager",
"derive_more",
"model",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-05-06 11:47:18 +02:00
"pay_u",
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-06 11:47:18 +02:00
"serde",
"testx",
2022-05-06 11:47:18 +02:00
"thiserror",
"tracing",
2022-05-15 10:30:15 +02:00
"uuid 0.8.2",
2022-05-06 11:47:18 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "percent-encoding"
2022-10-31 09:28:49 +01:00
version = "2.2.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 = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2022-04-14 08:07:59 +02:00
[[package]]
name = "pest"
2022-10-31 09:28:49 +01:00
version = "2.4.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 = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"thiserror",
2022-04-14 08:07:59 +02:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
2022-10-31 09:28:49 +01:00
version = "2.4.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 = "60b75706b9642ebcb34dab3bc7750f811609a0eb1dd8b88c2d15bf628c1c65b2"
2022-04-14 08:07:59 +02:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2022-10-31 09:28:49 +01:00
version = "2.4.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 = "f4f9272122f5979a6511a749af9db9bfc810393f63119970d7085fed1c4ea0db"
2022-04-14 08:07:59 +02:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
2022-10-31 09:28:49 +01:00
version = "2.4.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 = "4c8717927f9b79515e565a64fe46c38b8cd0427e64c40680b14a7365ab09ac8d"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"once_cell",
2022-04-14 08:07:59 +02:00
"pest",
2022-10-31 09:28:49 +01:00
"sha1",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "phf"
2022-10-31 09:28:49 +01:00
version = "0.11.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 = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
2022-04-14 08:07:59 +02:00
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
2022-10-31 09:28:49 +01:00
version = "0.11.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 = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
2022-04-14 08:07:59 +02:00
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
2022-10-31 09:28:49 +01:00
version = "0.11.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 = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
2022-04-14 08:07:59 +02:00
dependencies = [
"phf_shared",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "phf_shared"
2022-10-31 09:28:49 +01:00
version = "0.11.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 = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
2022-04-14 08:07:59 +02:00
dependencies = [
"siphasher",
"uncased",
]
[[package]]
name = "pin-project"
2022-10-31 09:28:49 +01:00
version = "1.0.12"
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 = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
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"
2022-10-31 09:28:49 +01:00
version = "1.0.12"
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 = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2022-04-29 20:37:41 +02:00
version = "0.2.9"
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 = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
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"
2022-10-31 09:28:49 +01:00
version = "0.3.26"
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 = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2022-04-14 08:07:59 +02:00
2022-05-20 16:08:49 +02:00
[[package]]
name = "pollster"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5da3b0203fd7ee5720aa0b5e790b591aa5d3f41c3ed2c34a3a393382198af2f7"
2022-04-14 08:07:59 +02:00
[[package]]
name = "polyval"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"cpufeatures",
2022-10-31 09:28:49 +01:00
"opaque-debug",
2022-04-14 08:07:59 +02:00
"universal-hash",
]
[[package]]
name = "ppv-lite86"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
[[package]]
name = "pretty_env_logger"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
dependencies = [
"env_logger",
"log",
]
[[package]]
name = "proc-macro2"
2022-10-31 09:28:49 +01:00
version = "1.0.47"
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 = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
2022-04-14 08:07:59 +02:00
dependencies = [
"unicode-ident",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "procinfo"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ab1427f3d2635891f842892dda177883dca0639e05fe66796a62c9d2f23b49c"
dependencies = [
"byteorder",
"libc",
"nom 2.2.1",
"rustc_version 0.2.3",
]
[[package]]
name = "prometrics"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8794f06bb51baa428e62af268ccdda6f40254f742234cdfb80cf4ad84890b38f"
dependencies = [
"atomic_immut",
"lazy_static",
"libc",
"procinfo",
"trackable 0.2.24",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
2022-10-31 09:28:49 +01:00
version = "1.0.21"
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 = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2022-04-20 14:30:59 +02:00
"rand_chacha",
"rand_core",
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-04-20 14:30:59 +02:00
"rand_core",
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 = [
2022-04-20 14:30:59 +02:00
"getrandom",
2022-04-14 08:07:59 +02:00
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "rayon"
2022-06-12 06:22:27 +02:00
version = "1.5.3"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
2022-04-14 21:40:26 +02:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-06-12 06:22:27 +02:00
version = "1.9.3"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
2022-04-14 21:40:26 +02:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
[[package]]
name = "redis-async"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76b00c604527d485d7a146d1e324ec1cf0a5ec522acb3d05bf7d51a9c28d7c0c"
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 21:40:26 +02:00
"futures-channel",
"futures-sink",
"futures-util",
"log",
2022-04-20 14:30:59 +02:00
"tokio",
2022-06-12 06:22:27 +02:00
"tokio-util 0.6.10",
2022-04-14 21:40:26 +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",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2022-04-20 14:30:59 +02:00
"getrandom",
2022-04-14 08:07:59 +02:00
"redox_syscall",
"thiserror",
]
[[package]]
name = "regex"
2022-10-31 09:28:49 +01:00
version = "1.6.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 = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2022-04-14 08:07:59 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "regex-syntax"
2022-10-31 09:28:49 +01:00
version = "0.6.27"
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 = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2022-04-14 08:07:59 +02:00
2022-04-21 16:06:34 +02:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi 0.3.9",
2022-04-21 16:06:34 +02:00
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "reqwest"
2022-10-31 09:28:49 +01:00
version = "0.11.12"
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 = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc"
2022-04-18 22:07:52 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"base64",
"bytes",
2022-04-18 22:07:52 +02:00
"encoding_rs",
"futures-core",
"futures-util",
2022-04-20 14:30:59 +02:00
"h2",
2022-04-18 22:07:52 +02:00
"http",
"http-body",
"hyper",
"hyper-rustls",
2022-04-21 16:06:34 +02:00
"hyper-tls",
2022-04-18 22:07:52 +02:00
"ipnet",
"js-sys",
"log",
"mime",
"mime_guess",
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",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-10-31 09:28:49 +01:00
"rustls",
2022-11-01 22:09:58 +01:00
"rustls-pemfile 1.0.1",
2022-04-18 22:07:52 +02:00
"serde",
"serde_json",
2022-04-20 14:30:59 +02:00
"serde_urlencoded",
"tokio",
2022-04-21 16:06:34 +02:00
"tokio-native-tls",
2022-10-31 09:28:49 +01:00
"tokio-rustls",
"tower-service",
2022-04-18 22:07:52 +02:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2022-10-31 09:28:49 +01:00
"webpki-roots",
2022-04-20 14:30:59 +02:00
"winreg",
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",
2022-11-01 22:09:58 +01:00
"spin 0.5.2",
2022-04-14 08:07:59 +02:00
"untrusted",
"web-sys",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
2022-11-01 22:09:58 +01:00
[[package]]
name = "rumqttc"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "499b7ab08ffa5a722958b6ce1b7c0270bea30909f589d12c5ec3a051afe423fc"
dependencies = [
"bytes",
"flume",
"futures 0.3.25",
"http",
"log",
"pollster",
"rustls-native-certs",
"rustls-pemfile 0.3.0",
"thiserror",
"tokio",
"tokio-rustls",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "rust_decimal"
2022-10-31 09:28:49 +01:00
version = "1.26.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 = "ee9164faf726e4f3ece4978b25ca877ddc6802fa77f38cdccb32c7f805ecd70c"
2022-04-14 08:07:59 +02:00
dependencies = [
"arrayvec",
"num-traits",
"serde",
]
2022-05-09 16:17:27 +02:00
[[package]]
name = "rust_decimal_macros"
2022-10-31 09:28:49 +01:00
version = "1.26.1"
2022-05-09 16:17:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "4903d8db81d2321699ca8318035d6ff805c548868df435813968795a802171b2"
2022-05-09 16:17:27 +02:00
dependencies = [
"quote",
"rust_decimal",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2022-05-22 14:19:11 +02:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2022-04-14 08:07:59 +02:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver 0.9.0",
]
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2022-10-31 09:28:49 +01:00
"semver 1.0.14",
2022-04-18 22:07:52 +02:00
]
[[package]]
name = "rustls"
2022-10-31 09:28:49 +01:00
version = "0.20.7"
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 = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
2022-04-18 22:07:52 +02:00
dependencies = [
"log",
"ring",
2022-10-31 09:28:49 +01:00
"sct",
"webpki",
2022-04-18 22:07:52 +02:00
]
2022-11-01 22:09:58 +01:00
[[package]]
name = "rustls-native-certs"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
dependencies = [
"openssl-probe",
"rustls-pemfile 1.0.1",
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
dependencies = [
"base64",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "rustls-pemfile"
2022-10-31 09:28:49 +01:00
version = "1.0.1"
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 = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
2022-04-18 22:07:52 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"base64",
2022-04-14 08:07:59 +02:00
]
2022-05-09 16:17:27 +02:00
[[package]]
name = "rusty-money"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b28f881005eac7ad8d46b6f075da5f322bd7f4f83a38720fc069694ddadd683"
dependencies = [
"rust_decimal",
"rust_decimal_macros",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "ryu"
2022-10-31 09:28:49 +01:00
version = "1.0.11"
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 = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2022-04-14 08:07:59 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "schannel"
2022-06-12 06:22:27 +02:00
version = "0.1.20"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2022-04-21 16:06:34 +02:00
dependencies = [
"lazy_static",
2022-10-31 09:28:49 +01:00
"windows-sys 0.36.1",
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"
[[package]]
2022-10-31 09:28:49 +01:00
name = "scratch"
version = "1.0.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 = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
2022-04-14 08:07:59 +02:00
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",
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "search_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
2022-11-05 12:31:18 +01:00
"channels",
2022-05-06 11:47:18 +02:00
"chrono",
"config",
"derive_more",
2022-11-05 12:31:18 +01:00
"futures 0.3.25",
2022-05-06 11:47:18 +02:00
"model",
2022-11-05 12:31:18 +01:00
"opentelemetry 0.17.0",
"opentelemetry-jaeger",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-05-06 11:47:18 +02:00
"pretty_env_logger",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-06 11:47:18 +02:00
"serde",
"sonic-channel",
2022-11-05 12:31:18 +01:00
"tarpc",
2022-05-06 11:47:18 +02:00
"thiserror",
2022-11-05 12:31:18 +01:00
"tokio",
"tracing",
2022-11-05 12:31:18 +01:00
"tracing-opentelemetry",
"tracing-subscriber",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "security-framework"
2022-10-31 09:28:49 +01:00
version = "2.7.0"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
2022-04-21 16:06:34 +02:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
dependencies = [
"core-foundation-sys",
"libc",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "seed"
2022-10-31 09:28:49 +01:00
version = "0.9.2"
2022-05-05 16:30:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "9352d75dd253803ce05722fe3acaafffc461d4faeaf0ebe0d8bf831059482e21"
2022-05-05 16:30:25 +02:00
dependencies = [
"console_error_panic_hook",
"cookie",
"dbg",
"enclose",
2022-10-31 09:28:49 +01:00
"futures 0.3.25",
2022-05-05 16:30:25 +02:00
"getrandom",
"gloo-file",
"gloo-timers",
"gloo-utils",
"indexmap",
"js-sys",
"rand",
"serde",
"serde_json",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2022-05-22 14:19:11 +02:00
[[package]]
name = "self_cell"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af"
2022-04-14 08:07:59 +02:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
"semver-parser",
]
[[package]]
name = "semver"
2022-10-31 09:28:49 +01:00
version = "1.0.14"
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 = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
2022-04-14 08:07:59 +02:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2022-04-21 16:06:34 +02:00
[[package]]
name = "sendgrid"
2022-11-05 11:40:55 +01:00
version = "0.18.1"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-05 11:40:55 +01:00
checksum = "fd6ba8c048dc4beab827cebc1d54f1007f5ebdfa240812ed6faa89452fd34ba0"
2022-04-21 16:06:34 +02:00
dependencies = [
"data-encoding",
"reqwest",
"serde",
"serde_json",
"thiserror",
"url",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "serde"
2022-10-31 09:28:49 +01:00
version = "1.0.147"
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 = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
2022-04-14 08:07:59 +02:00
dependencies = [
"serde_derive",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "serde-wasm-bindgen"
2022-10-31 09:28:49 +01:00
version = "0.4.5"
2022-05-05 16:30:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
2022-05-05 16:30:25 +02:00
dependencies = [
"js-sys",
"serde",
"wasm-bindgen",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "serde_derive"
2022-10-31 09:28:49 +01:00
version = "1.0.147"
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 = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-10-31 09:28:49 +01:00
version = "1.0.87"
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 = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
"ryu",
"serde",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "serde_path_to_error"
2022-10-31 09:28:49 +01:00
version = "0.1.8"
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 = "184c643044780f7ceb59104cef98a5a6f12cb2288a7bc701ab93a362b49fd47d"
2022-04-18 22:07:52 +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",
2022-04-20 14:30:59 +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 = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"cpufeatures",
2022-10-31 09:28:49 +01: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"
2022-10-31 09:28:49 +01:00
version = "0.10.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 = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"cpufeatures",
2022-10-31 09:28:49 +01: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"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "siphasher"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
[[package]]
name = "slab"
2022-10-31 09:28:49 +01:00
version = "0.4.7"
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 = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "slog"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06"
2022-04-14 08:07:59 +02:00
[[package]]
name = "slug"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
dependencies = [
"deunicode",
]
[[package]]
name = "smallvec"
2022-10-31 09:28:49 +01:00
version = "1.10.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 = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-04-14 08:07:59 +02:00
[[package]]
name = "socket2"
2022-10-31 09:28:49 +01:00
version = "0.4.7"
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 = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
2022-06-12 06:22:27 +02:00
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "sonic-channel"
2022-10-31 09:28:49 +01:00
version = "1.1.0"
2022-05-05 16:30:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "636d9284cdd01febfcde05e205d1e24dc5bf6d05e93454491a18f750a91c572e"
2022-05-05 16:30:25 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"log",
2022-05-05 16:30:25 +02:00
"whatlang",
]
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"
2022-11-01 22:09:58 +01:00
[[package]]
name = "spin"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
dependencies = [
"lock_api",
]
[[package]]
name = "splay_tree"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "309dee0d93c0a8f7a852cbd9a86e01e1a94781b64d98d86a191f4af7f095ecc1"
2022-04-14 08:07:59 +02:00
[[package]]
name = "sqlformat"
2022-10-31 09:28:49 +01:00
version = "0.2.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 = "f87e292b4291f154971a43c3774364e2cbcaec599d3f5bf6fa9d122885dbc38a"
2022-04-14 08:07:59 +02:00
dependencies = [
"itertools",
"nom 7.1.1",
2022-04-14 08:07:59 +02:00
"unicode_categories",
]
[[package]]
name = "sqlx"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "9249290c05928352f71c077cc44a464d880c63f26f7534728cca008e135c0428"
2022-04-14 08:07:59 +02:00
dependencies = [
"sqlx-core",
"sqlx-macros",
]
[[package]]
name = "sqlx-core"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"ahash",
2022-04-14 08:07:59 +02:00
"atoi",
2022-04-20 14:30:59 +02:00
"base64",
2022-04-14 08:07:59 +02:00
"bigdecimal",
"bit-vec",
"bitflags",
"bstr",
"byteorder",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"chrono",
"crc",
"crossbeam-queue",
"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",
2022-04-14 08:07:59 +02:00
"futures-channel",
"futures-core",
"futures-intrusive",
"futures-util",
"git2",
"hashlink",
"hex",
2022-04-16 18:58:59 +02:00
"hkdf",
"hmac",
2022-04-14 08:07:59 +02:00
"indexmap",
"ipnetwork",
2022-04-20 14:30:59 +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-04-20 14:30:59 +02:00
"rand",
2022-04-14 08:07:59 +02:00
"rust_decimal",
2022-10-31 09:28:49 +01:00
"rustls",
2022-11-01 22:09:58 +01:00
"rustls-pemfile 1.0.1",
2022-04-14 08:07:59 +02:00
"serde",
"serde_json",
2022-10-31 09:28:49 +01:00
"sha1",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-14 08:07:59 +02:00
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
2022-10-31 09:28:49 +01:00
"time 0.3.16",
2022-04-14 08:07:59 +02:00
"tokio-stream",
"url",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
"webpki-roots",
2022-04-14 08:07:59 +02:00
"whoami",
]
[[package]]
name = "sqlx-macros"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "b850fa514dc11f2ee85be9d055c512aa866746adfacd1cb42d867d68e6a5b0d9"
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",
2022-04-16 18:58:59 +02:00
"heck",
2022-04-14 08:07:59 +02:00
"once_cell",
"proc-macro2",
"quote",
"serde_json",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-14 08:07:59 +02:00
"sqlx-core",
"sqlx-rt",
"syn",
"url",
]
[[package]]
name = "sqlx-rt"
2022-10-31 09:28:49 +01:00
version = "0.6.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 = "24c5b2d25fa654cc5f841750b8e1cdedbe21189bf9a9382ee90bfa9dd3562396"
2022-04-14 08:07:59 +02:00
dependencies = [
"once_cell",
2022-04-20 14:30:59 +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"
2022-04-14 08:07:59 +02:00
[[package]]
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"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]]
name = "syn"
2022-10-31 09:28:49 +01:00
version = "1.0.103"
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 = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2022-04-14 08:07:59 +02:00
]
2022-11-03 07:02:33 +01:00
[[package]]
name = "tarpc"
version = "0.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dd84a0fdd485d04b67be6009a04603489c8cb00ade830e4dd2e3660bef855b1"
dependencies = [
"anyhow",
"fnv",
"futures 0.3.25",
"humantime 2.1.0",
"opentelemetry 0.17.0",
2022-11-03 07:02:33 +01:00
"pin-project",
"rand",
"serde",
2022-11-03 07:02:33 +01:00
"static_assertions",
"tarpc-plugins",
"thiserror",
"tokio",
"tokio-serde",
2022-11-03 07:02:33 +01:00
"tokio-util 0.7.4",
"tracing",
"tracing-opentelemetry",
]
[[package]]
name = "tarpc-plugins"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ee42b4e559f17bce0385ebf511a7beb67d5cc33c12c96b7f4e9789919d9c10f"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tasque"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38095001d1ebb11e772cf2b61b09c3aa657722088ac31474695298d227755753"
dependencies = [
"num_cpus",
"prometrics",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "tempfile"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
"cfg-if 1.0.0",
2022-04-21 16:06:34 +02:00
"fastrand",
"libc",
"redox_syscall",
"remove_dir_all",
"winapi 0.3.9",
2022-04-21 16:06:34 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tera"
2022-10-31 09:28:49 +01:00
version = "1.17.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 = "3df578c295f9ec044ff1c829daf31bb7581d5b3c2a7a3d87419afe1f2531438c"
2022-04-14 08:07:59 +02:00
dependencies = [
"chrono",
"chrono-tz",
"globwalk",
"humansize",
"lazy_static",
"percent-encoding",
"pest",
"pest_derive",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-14 08:07:59 +02:00
"regex",
"serde",
"serde_json",
"slug",
"unic-segment",
]
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
2022-06-05 21:03:22 +02:00
[[package]]
name = "testx"
version = "0.1.0"
2022-04-14 08:07:59 +02:00
[[package]]
name = "thiserror"
2022-10-31 09:28:49 +01:00
version = "1.0.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 = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2022-04-14 08:07:59 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-10-31 09:28:49 +01:00
version = "1.0.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 = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
"once_cell",
]
[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
[[package]]
name = "thrift"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09678c4cdbb4eed72e18b7c2af1329c69825ed16fcbac62d083fc3e2b0590ff0"
dependencies = [
"byteorder",
"integer-encoding",
"log",
"ordered-float",
"threadpool",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "time"
2022-10-31 09:28:49 +01:00
version = "0.1.44"
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 = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
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",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "time"
2022-10-31 09:28:49 +01:00
version = "0.3.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 = "0fab5c8b9980850e06d92ddbe3ab839c062c801f3927c0fb8abd6fc8e918fbca"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
"libc",
"num_threads",
2022-10-31 09:28:49 +01:00
"serde",
"time-core",
"time-macros",
2022-04-14 08:07:59 +02:00
]
[[package]]
2022-10-31 09:28:49 +01:00
name = "time-core"
version = "0.1.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 = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2022-04-14 08:07:59 +02:00
[[package]]
name = "time-macros"
2022-10-31 09:28:49 +01:00
version = "0.2.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 = "65bb801831d812c562ae7d2bfb531f26e66e4e1f6b17307ba4149c5064710e5b"
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
]
2022-05-22 14:19:11 +02:00
[[package]]
name = "tinystr"
2022-10-31 09:28:49 +01:00
version = "0.7.0"
2022-05-22 14:19:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "f8aeafdfd935e4a7fe16a91ab711fa52d54df84f9c8f7ca5837a9d1d902ef4c2"
dependencies = [
"displaydoc",
]
2022-05-22 14:19:11 +02:00
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"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2022-05-06 11:47:18 +02:00
[[package]]
name = "token_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"argon2",
"chrono",
"config",
"database_manager",
"derive_more",
2022-10-31 09:28:49 +01:00
"futures 0.3.25",
2022-05-22 14:19:11 +02:00
"futures-util",
2022-05-06 11:47:18 +02:00
"hmac",
"jwt",
"model",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-05-06 11:47:18 +02:00
"password-hash",
"pretty_env_logger",
"rand_core",
2022-11-01 22:09:58 +01:00
"rumqttc",
2022-05-06 11:47:18 +02:00
"serde",
"sha2",
"testx",
2022-05-06 11:47:18 +02:00
"thiserror",
2022-05-22 14:19:11 +02:00
"tokio",
"tracing",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-06 11:47:18 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tokio"
2022-10-31 09:28:49 +01:00
version = "1.21.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 = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"autocfg",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"libc",
"memchr",
2022-10-31 09:28:49 +01:00
"mio 0.8.5",
2022-04-14 08:07:59 +02:00
"num_cpus",
2022-06-12 06:22:27 +02:00
"parking_lot 0.12.1",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"signal-hook-registry",
2022-04-20 14:30:59 +02:00
"socket2",
2022-04-16 18:57:37 +02:00
"tokio-macros",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
]
2022-04-16 18:57:37 +02:00
[[package]]
name = "tokio-macros"
2022-06-12 06:22:27 +02:00
version = "1.8.0"
2022-04-16 18:57:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2022-04-16 18:57:37 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
"tokio",
]
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 = [
2022-10-31 09:28:49 +01:00
"rustls",
2022-04-20 14:30:59 +02:00
"tokio",
2022-10-31 09:28:49 +01:00
"webpki",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "tokio-serde"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "911a61637386b789af998ee23f50aa30d5fd7edcec8d6d3dedae5e5815205466"
dependencies = [
"bincode",
"bytes",
"educe",
"futures-core",
"futures-sink",
"pin-project",
"serde",
"serde_json",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tokio-stream"
2022-10-31 09:28:49 +01:00
version = "0.1.11"
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 = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
2022-04-14 08:07:59 +02:00
dependencies = [
"futures-core",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
"tokio",
2022-04-14 08:07:59 +02:00
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "tokio-util"
2022-06-12 06:22:27 +02:00
version = "0.6.10"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-12 06:22:27 +02:00
checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
2022-04-14 21:40:26 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 21:40:26 +02:00
"futures-core",
"futures-sink",
"log",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
"tokio",
2022-04-14 21:40:26 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tokio-util"
2022-10-31 09:28:49 +01:00
version = "0.7.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 = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"futures-core",
"futures-sink",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-11-03 07:02:33 +01:00
"slab",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-14 08:07:59 +02:00
"tracing",
]
[[package]]
name = "toml"
2022-04-16 18:58:59 +02:00
version = "0.5.9"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-16 18:58:59 +02:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2022-04-14 08:07:59 +02:00
dependencies = [
"serde",
]
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 = [
"cfg-if 1.0.0",
2022-04-14 08:07:59 +02:00
"log",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-14 08:07:59 +02:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2022-10-31 09:28:49 +01:00
version = "0.1.23"
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 = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2022-10-31 09:28:49 +01:00
version = "0.1.30"
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 = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-06-12 06:22:27 +02:00
"once_cell",
"valuable",
]
[[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",
]
[[package]]
2022-11-03 07:02:33 +01:00
name = "tracing-opentelemetry"
version = "0.17.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f"
dependencies = [
"once_cell",
"opentelemetry 0.17.0",
2022-11-03 07:02:33 +01:00
"tracing",
"tracing-core",
"tracing-log",
2022-11-03 07:02:33 +01:00
"tracing-subscriber",
]
[[package]]
name = "tracing-subscriber"
2022-10-31 09:28:49 +01:00
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
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]]
name = "trackable"
version = "0.2.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98abb9e7300b9ac902cc04920945a874c1973e08c310627cc4458c04b70dd32"
dependencies = [
"trackable 1.2.0",
"trackable_derive",
]
[[package]]
name = "trackable"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "017e2a1a93718e4e8386d037cfb8add78f1d690467f4350fb582f55af1203167"
dependencies = [
"trackable_derive",
]
[[package]]
name = "trackable_derive"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebeb235c5847e2f82cfe0f07eb971d1e5f6804b18dac2ae16349cc604380f82f"
dependencies = [
"quote",
"syn",
2022-04-14 08:07:59 +02:00
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2022-04-14 08:07:59 +02:00
[[package]]
name = "twoway"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
dependencies = [
"memchr",
"unchecked-index",
]
2022-05-22 14:19:11 +02:00
[[package]]
name = "type-map"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46"
dependencies = [
"rustc-hash",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "typenum"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "ucd-trie"
2022-10-31 09:28:49 +01:00
version = "0.1.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 = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2022-04-14 08:07:59 +02:00
[[package]]
name = "uncased"
2022-06-12 06:22:27 +02:00
version = "0.9.7"
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 = "09b01702b0fd0b3fadcf98e098780badda8742d4f4a7676615cad90e8ac73622"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
[[package]]
name = "unic-char-property"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
dependencies = [
"unic-char-range",
]
[[package]]
name = "unic-char-range"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
[[package]]
name = "unic-common"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
2022-05-22 14:19:11 +02:00
[[package]]
name = "unic-langid"
2022-10-31 09:28:49 +01:00
version = "0.9.1"
2022-05-22 14:19:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f"
2022-05-22 14:19:11 +02:00
dependencies = [
"unic-langid-impl",
]
[[package]]
name = "unic-langid-impl"
2022-10-31 09:28:49 +01:00
version = "0.9.1"
2022-05-22 14:19:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff"
2022-05-22 14:19:11 +02:00
dependencies = [
"tinystr",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "unic-segment"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
dependencies = [
"unic-ucd-segment",
]
[[package]]
name = "unic-ucd-segment"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
dependencies = [
"unic-char-property",
"unic-char-range",
"unic-ucd-version",
]
[[package]]
name = "unic-ucd-version"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
dependencies = [
"unic-common",
]
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "unicode-bidi"
2022-04-29 20:37:41 +02:00
version = "0.3.8"
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 = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2022-04-14 08:07:59 +02:00
[[package]]
name = "unicode-ident"
2022-10-31 09:28:49 +01:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
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"
2022-10-31 09:28:49 +01:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
[[package]]
name = "unicode-width"
version = "0.1.10"
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 = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
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"
[[package]]
name = "universal-hash"
2022-10-31 09:28:49 +01:00
version = "0.5.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 = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"crypto-common",
2022-04-14 08:07:59 +02:00
"subtle",
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
2022-10-31 09:28:49 +01:00
version = "2.3.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 = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2022-04-14 08:07:59 +02:00
dependencies = [
"form_urlencoded",
2022-10-31 09:28:49 +01:00
"idna 0.3.0",
2022-04-14 08:07:59 +02:00
"percent-encoding",
2022-04-18 22:07:52 +02:00
"serde",
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 = [
2022-05-05 16:30:25 +02:00
"getrandom",
2022-04-14 08:07:59 +02:00
"serde",
]
2022-05-15 10:30:15 +02:00
[[package]]
name = "uuid"
2022-10-31 09:28:49 +01:00
version = "1.2.1"
2022-05-15 10:30:15 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "feb41e78f93363bb2df8b0e86a2ca30eed7806ea16ea0c790d757cf93f79be83"
2022-05-15 10:30:15 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"atomic",
2022-05-15 10:30:15 +02:00
"getrandom",
2022-10-31 09:28:49 +01:00
"md-5",
"serde",
"sha1_smol",
2022-05-15 10:30:15 +02:00
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "validator"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d0f08911ab0fee2c5009580f04615fa868898ee57de10692a45da0c3bcc3e5e"
dependencies = [
2022-10-31 09:28:49 +01:00
"idna 0.2.3",
2022-04-14 21:40:26 +02:00
"lazy_static",
"regex",
"serde",
"serde_derive",
"serde_json",
"url",
"validator_types",
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "validator"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f07b0a1390e01c0fc35ebb26b28ced33c9a3808f7f9fbe94d3cc01e233bfeed5"
dependencies = [
2022-10-31 09:28:49 +01:00
"idna 0.2.3",
2022-05-06 11:47:18 +02:00
"lazy_static",
"regex",
"serde",
"serde_derive",
"serde_json",
"url",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "validator_types"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291"
dependencies = [
"proc-macro2",
"syn",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
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"
2022-05-05 16:30:25 +02:00
[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
2022-04-14 08:07:59 +02:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi 0.3.9",
2022-04-14 08:07:59 +02:00
"winapi-util",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "wasi"
2022-10-31 09:28:49 +01:00
version = "0.10.0+wasi-snapshot-preview1"
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 = "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"
2022-10-31 09:28:49 +01:00
version = "0.2.83"
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 = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
2022-04-14 08:07:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-05-05 16:30:25 +02:00
"serde",
"serde_json",
2022-04-14 08:07:59 +02:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-10-31 09:28:49 +01:00
version = "0.2.83"
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 = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
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",
"syn",
"wasm-bindgen-shared",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "wasm-bindgen-futures"
2022-10-31 09:28:49 +01:00
version = "0.4.33"
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 = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
2022-04-18 22:07:52 +02:00
dependencies = [
"cfg-if 1.0.0",
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"
2022-10-31 09:28:49 +01:00
version = "0.2.83"
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 = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
2022-04-14 08:07:59 +02:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-10-31 09:28:49 +01:00
version = "0.2.83"
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 = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-10-31 09:28:49 +01:00
version = "0.2.83"
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 = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2022-04-14 08:07:59 +02:00
2022-05-05 16:30:25 +02:00
[[package]]
name = "web"
version = "0.1.0"
dependencies = [
"chrono",
"gloo-timers",
"indexmap",
2022-05-10 08:23:35 +02:00
"js-sys",
2022-05-09 16:17:27 +02:00
"model",
"rusty-money",
"seed",
2022-05-05 16:30:25 +02:00
"serde",
"serde-wasm-bindgen",
"serde_json",
2022-05-13 15:24:11 +02:00
"thiserror",
2022-10-31 09:28:49 +01:00
"uuid 1.2.1",
2022-05-05 16:30:25 +02:00
"wasm-bindgen",
"web-sys",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "web-sys"
2022-10-31 09:28:49 +01:00
version = "0.3.60"
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 = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
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-10-31 09:28:49 +01:00
version = "0.22.5"
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 = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
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
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "whatlang"
2022-10-31 09:28:49 +01:00
version = "0.16.2"
2022-05-05 16:30:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-31 09:28:49 +01:00
checksum = "9c531a2dc4c462b833788be2c07eef4e621d0e9edbd55bf280cc164c1c1aa043"
2022-05-05 16:30:25 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"hashbrown",
"once_cell",
2022-05-05 16:30:25 +02:00
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "whoami"
2022-10-31 09:28:49 +01:00
version = "1.2.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 = "d6631b6a2fd59b1841b622e8f1a7ad241ef0a46f2d580464ce8140ac94cbd571"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"bumpalo",
2022-04-14 08:07:59 +02:00
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2022-04-14 08:07:59 +02:00
[[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-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2022-04-14 08:07:59 +02:00
[[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 = [
"winapi 0.3.9",
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"
[[package]]
name = "windows-sys"
2022-05-09 16:17:27 +02:00
version = "0.36.1"
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 = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-10-31 09:28:49 +01:00
"windows_aarch64_msvc 0.36.1",
"windows_i686_gnu 0.36.1",
"windows_i686_msvc 0.36.1",
"windows_x86_64_gnu 0.36.1",
"windows_x86_64_msvc 0.36.1",
2022-04-14 08:07:59 +02:00
]
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc 0.42.0",
"windows_i686_gnu 0.42.0",
"windows_i686_msvc 0.42.0",
"windows_x86_64_gnu 0.42.0",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc 0.42.0",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2022-04-14 08:07:59 +02:00
[[package]]
name = "windows_aarch64_msvc"
2022-05-09 16:17:27 +02:00
version = "0.36.1"
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 = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-04-14 08:07:59 +02:00
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2022-04-14 08:07:59 +02:00
[[package]]
name = "windows_i686_gnu"
2022-05-09 16:17:27 +02:00
version = "0.36.1"
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 = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-04-14 08:07:59 +02:00
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2022-04-14 08:07:59 +02:00
[[package]]
name = "windows_i686_msvc"
2022-05-09 16:17:27 +02:00
version = "0.36.1"
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 = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-04-14 08:07:59 +02:00
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2022-04-14 08:07:59 +02:00
[[package]]
name = "windows_x86_64_gnu"
2022-05-09 16:17:27 +02:00
version = "0.36.1"
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 = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-04-14 08:07:59 +02:00
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2022-04-14 08:07:59 +02:00
[[package]]
name = "windows_x86_64_msvc"
2022-05-09 16:17:27 +02:00
version = "0.36.1"
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 = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-04-14 08:07:59 +02:00
2022-10-31 09:28:49 +01:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
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 = [
"winapi 0.3.9",
]
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "zstd"
2022-10-31 09:28:49 +01:00
version = "0.11.2+zstd.1.5.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 = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2022-04-14 08:07:59 +02:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2022-10-31 09:28:49 +01:00
version = "5.0.2+zstd.1.5.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 = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2022-10-31 09:28:49 +01:00
version = "2.0.1+zstd.1.5.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 = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
]