bazzar/Cargo.lock

4540 lines
104 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-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-04-14 21:40:26 +02:00
"tokio-util 0.6.9",
]
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",
"parking_lot 0.12.0",
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-04-14 08:07:59 +02:00
"tokio-util 0.7.1",
]
[[package]]
name = "actix-broker"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f396220495e64a3dd22e1f8cd16345fa494f8d9c3e79bfd92c74c7911b811c19"
dependencies = [
2022-04-14 21:40:26 +02:00
"actix 0.13.0",
2022-05-05 16:30:25 +02:00
"ahash 0.7.6",
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-04-14 08:07:59 +02:00
"tokio-util 0.7.1",
]
[[package]]
name = "actix-cors"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "414360eed71ba2d5435b185ba43ecbe281dfab5df3898286d6b7be8074372c92"
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"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d81bde9a79336aa51ebed236e91fc1a0528ff67cfdf4f68ca4c61ede9fd26fb5"
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"
version = "3.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5885cb81a0d4d0d322864bea1bb6c2a8144626b4fdc625d4c51eba197e7797a"
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
2022-05-05 16:30:25 +02:00
"ahash 0.7.6",
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",
"log",
"mime",
"percent-encoding",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
"rand",
2022-04-14 08:07:59 +02:00
"sha-1 0.10.0",
"smallvec",
"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",
"time 0.3.9",
]
[[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",
"time 0.3.9",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-14 21:40:26 +02:00
"tokio-util 0.6.9",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "actix-router"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
dependencies = [
"bytestring",
"firestorm",
"http",
"log",
"regex",
"serde",
]
[[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-04-20 14:30:59 +02:00
"mio",
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",
"time 0.3.9",
"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-04-14 21:40:26 +02:00
"tokio-util 0.7.1",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "actix-utils"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
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"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4e5ebffd51d50df56a3ae0de0e59487340ca456f05dd0b90c0a7a6dd6a74d31"
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-05-05 16:30:25 +02:00
"ahash 0.7.6",
2022-04-20 14:30:59 +02:00
"bytes",
2022-04-14 08:07:59 +02:00
"bytestring",
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
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-04-14 08:07:59 +02:00
"time 0.3.9",
"url",
]
[[package]]
name = "actix-web-codegen"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7525bedf54704abb1d469e88d7e7e9226df73778798a69cea5022d53b2ae91bc"
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",
"opentelemetry-semantic-conventions",
"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"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [
"generic-array 0.14.5",
]
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cipher",
"cpufeatures",
"opaque-debug 0.3.0",
]
[[package]]
name = "aes-gcm"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "ahash"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"
2022-04-14 08:07:59 +02:00
[[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"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
[[package]]
name = "alloc-no-stdlib"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
[[package]]
name = "alloc-stdlib"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
dependencies = [
"alloc-no-stdlib",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "anyhow"
2022-04-29 20:37:41 +02:00
version = "1.0.57"
2022-04-14 21:40:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 20:37:41 +02:00
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
2022-04-14 21:40:26 +02:00
[[package]]
name = "argon2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a27e27b63e4a34caee411ade944981136fdfa535522dc9944d6700196cbd899f"
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"
version = "0.1.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atoi"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616896e05fc0e2649463a93a15183c6a16bf03413a7af88ef1285ddedfa9cda5"
dependencies = [
"num-traits",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
2022-04-20 14:30:59 +02:00
"winapi",
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"
version = "0.3.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "base-x"
2022-04-29 20:37:41 +02:00
version = "0.2.10"
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 = "dc19a4937b4fbd3fe3379793130e42060d10627a360f2127802b10b87e7baf74"
2022-04-14 08:07:59 +02:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "base64ct"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dea908e7347a8c64e378c17e30ef880ad73e3b4498346b055c2c00ea342f3179"
[[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",
2022-05-06 11:47:18 +02:00
"cart_manager",
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 11:47:18 +02:00
"email_manager",
2022-05-06 16:02:38 +02:00
"fs_manager",
2022-04-16 18:57:37 +02:00
"futures",
"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-04-14 08:07:59 +02:00
"log",
2022-05-01 17:20:31 +02:00
"messagebus",
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-04-14 08:07:59 +02:00
"parking_lot 0.12.0",
2022-05-06 11:47:18 +02:00
"payment_manager",
2022-04-14 08:07:59 +02:00
"pretty_env_logger",
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",
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",
"uuid",
2022-05-06 11:47:18 +02:00
"validator 0.14.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "bigdecimal"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1e50562e37200edf7c6c43e54a08e64a5553bfb59d9c297d5572512aa517256"
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
[[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 = [
"digest 0.10.3",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
"generic-array 0.12.4",
]
[[package]]
name = "block-buffer"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
dependencies = [
"generic-array 0.14.5",
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
[[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"
version = "3.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
[[package]]
name = "bytestring"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
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",
"chrono",
"config",
"database_manager",
"log",
"model",
"pretty_env_logger",
"thiserror",
"uuid",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "cc"
version = "1.0.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"serde",
2022-04-29 20:37:41 +02:00
"time 0.1.43",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "chrono-tz"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552"
dependencies = [
"chrono",
"chrono-tz-build",
"phf",
]
[[package]]
name = "chrono-tz-build"
version = "0.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069"
dependencies = [
"parse-zoneinfo",
"phf",
"phf_codegen",
]
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array 0.14.5",
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "config"
version = "0.1.0"
dependencies = [
"actix-web",
"log",
"parking_lot 0.12.0",
"password-hash",
"pay_u",
"serde",
"serde_json",
"thiserror",
"toml",
]
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",
"wasm-bindgen",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "const_fn"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
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",
"time 0.3.9",
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"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
dependencies = [
"libc",
]
[[package]]
name = "crc"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403"
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "crossbeam-channel"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"crossbeam-utils",
]
2022-04-14 21:40:26 +02:00
[[package]]
name = "crossbeam-deque"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 21:40:26 +02:00
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
dependencies = [
"autocfg",
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 21:40:26 +02:00
"crossbeam-utils",
"lazy_static",
"memoffset",
"scopeguard",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "crossbeam-queue"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"lazy_static",
]
[[package]]
name = "crypto-common"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
dependencies = [
"generic-array 0.14.5",
"typenum",
]
2022-05-01 17:20:31 +02:00
[[package]]
name = "ctor"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c"
dependencies = [
"quote",
"syn",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "ctr"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
dependencies = [
"cipher",
]
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-05-01 17:20:31 +02:00
[[package]]
name = "dashmap"
version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
dependencies = [
"cfg-if",
"num_cpus",
]
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",
"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
"log",
"model",
"pretty_env_logger",
2022-05-06 16:02:38 +02:00
"rand",
2022-05-06 11:47:18 +02:00
"sqlx",
"sqlx-core",
"thiserror",
"uuid",
]
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",
"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
"log",
"model",
2022-05-08 09:47:05 +02:00
"password-hash",
2022-05-06 16:02:38 +02:00
"pretty_env_logger",
"rand",
2022-05-08 09:47:05 +02:00
"thiserror",
"tokio",
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"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
"generic-array 0.12.4",
]
[[package]]
name = "digest"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
dependencies = [
"block-buffer 0.10.2",
"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",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
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",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2022-05-06 11:47:18 +02:00
[[package]]
name = "email_manager"
version = "0.1.0"
dependencies = [
"actix 0.13.0",
"actix-rt",
"chrono",
"config",
"log",
"model",
"pretty_env_logger",
"sendgrid",
2022-05-09 16:17:27 +02:00
"serde",
"serde_json",
2022-05-06 11:47:18 +02:00
"thiserror",
2022-05-09 16:17:27 +02:00
"tinytemplate",
2022-05-06 11:47:18 +02:00
"uuid",
]
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 = [
2022-04-20 14:30:59 +02:00
"cfg-if",
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",
"humantime",
"log",
"regex",
"termcolor",
]
2022-05-01 17:20:31 +02:00
[[package]]
name = "erased-serde"
version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad132dd8d0d0b546348d7d86cb3191aad14b34e5f979781fc005c80d4ac67ffd"
dependencies = [
"serde",
]
2022-04-16 18:58:59 +02:00
[[package]]
name = "event-listener"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
2022-05-06 16:02:38 +02:00
[[package]]
name = "fake"
version = "2.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21a8531dd3a64fd1cfbe92fad4160bc2060489c6195fe847e045e5788f710bae"
dependencies = [
"chrono",
"dummy",
"http",
"rand",
"uuid",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2022-04-20 16:25:52 +02:00
[[package]]
name = "fastrand"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
dependencies = [
"instant",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "firestorm"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d3d6188b8804df28032815ea256b6955c9625c24da7525f387a7af02fbb8f01"
[[package]]
name = "flate2"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"crc32fast",
"libc",
2022-04-20 14:30:59 +02:00
"miniz_oxide",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2022-04-21 16:06:34 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2022-04-14 08:07:59 +02:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"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",
"chrono",
"config",
"log",
"model",
"pretty_env_logger",
"thiserror",
"tokio",
"uuid",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "futures"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
[[package]]
name = "futures-executor"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
dependencies = [
"futures-core",
"lock_api",
"parking_lot 0.11.2",
]
[[package]]
name = "futures-io"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
[[package]]
name = "futures-macro"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
[[package]]
name = "futures-task"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
[[package]]
name = "futures-util"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
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"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
dependencies = [
"typenum",
]
[[package]]
name = "generic-array"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
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"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-18 22:07:52 +02:00
"js-sys",
2022-04-14 08:07:59 +02:00
"libc",
2022-04-29 20:37:41 +02:00
"wasi 0.10.2+wasi-snapshot-preview1",
2022-04-18 22:07:52 +02:00
"wasm-bindgen",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "ghash"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
dependencies = [
"opaque-debug 0.3.0",
"polyval",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "gimli"
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
2022-04-14 08:07:59 +02:00
[[package]]
name = "git2"
version = "0.13.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f29229cc1b24c0e6062f6e742aa3e256492a5323365e5ed3413599f8a5eff7d6"
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
2022-05-12 08:38:31 +02:00
"openssl-probe",
"openssl-sys",
2022-04-14 08:07:59 +02:00
"url",
]
[[package]]
name = "globset"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
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"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa5d6084efa4a2b182ef3a8649cb6506cb4843f22cf907c6e0a799944248ae90"
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"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c0bbef55e98d946adbd89f3c65a497cf9adb995a73b99573f30180e8813ab21"
dependencies = [
"js-sys",
"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"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
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-04-14 08:07:59 +02:00
"tokio-util 0.7.1",
"tracing",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "hashbrown"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96282e96bfcd3da0d3aa9938bedf1e50df3269b6db08b4876d2da0bb1a0841cf"
dependencies = [
"ahash 0.3.8",
"autocfg",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
dependencies = [
2022-05-05 16:30:25 +02:00
"ahash 0.7.6",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "hashlink"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf"
dependencies = [
2022-05-05 16:30:25 +02:00
"hashbrown 0.11.2",
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 = [
"digest 0.10.3",
]
[[package]]
name = "http"
2022-04-29 20:37:41 +02:00
version = "0.2.7"
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 = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
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"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
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-04-29 20:37:41 +02:00
version = "1.7.1"
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 = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
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",
"uuid",
]
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-04-18 22:07:52 +02:00
[[package]]
name = "hyper"
version = "0.14.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
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",
"rustls 0.20.4",
2022-04-20 14:30:59 +02:00
"tokio",
2022-05-09 16:17:27 +02:00
"tokio-rustls 0.23.4",
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-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",
]
[[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"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "482a2e29200b7eed25d7fdbd14423326760b7f6658d21a4cf12d55a50713c69f"
dependencies = [
"include_dir_macros",
]
[[package]]
name = "include_dir_macros"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e074c19deab2501407c91ba1860fa3d6820bfde307db6d8cb851b55a10be89b"
dependencies = [
"proc-macro2",
"quote",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "indexmap"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
dependencies = [
"autocfg",
2022-05-05 16:30:25 +02:00
"hashbrown 0.11.2",
"serde",
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 = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
]
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"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02c3eaab3ac0ede60ffa41add21970a7df7d91772c03383aac6c2c3d53cc716b"
[[package]]
name = "itertools"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
[[package]]
name = "itoa"
2022-04-20 14:30:59 +02:00
version = "1.0.1"
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 = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[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"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
version = "0.3.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
dependencies = [
"wasm-bindgen",
]
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",
"digest 0.10.3",
"hmac",
"serde",
"serde_json",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-18 22:07:52 +02:00
]
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-04-29 20:37:41 +02:00
version = "0.2.125"
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 = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
2022-04-14 08:07:59 +02:00
[[package]]
name = "libgit2-sys"
version = "0.12.26+1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e1c899248e606fbfe68dcb31d8b0176ebab833b103824af31bddf4b7457494"
dependencies = [
"cc",
"libc",
2022-05-12 08:38:31 +02:00
"libssh2-sys",
2022-04-14 08:07:59 +02:00
"libz-sys",
2022-05-12 08:38:31 +02:00
"openssl-sys",
2022-04-14 08:07:59 +02:00
"pkg-config",
]
2022-05-12 08:38:31 +02:00
[[package]]
name = "libssh2-sys"
version = "0.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "libz-sys"
2022-04-29 20:37:41 +02:00
version = "1.1.6"
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 = "92e7e15d7610cce1d9752e137625f14e61a28cd45929b6e12e47b50fe154ee2e"
2022-04-14 08:07:59 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[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"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
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 = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "mac_address"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df1d1bc1084549d60725ccc53a2bfa07f67fe4689fda07b05a36531f2988104a"
dependencies = [
"nix",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "md-5"
2022-04-16 18:58:59 +02:00
version = "0.10.1"
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 = "658646b21e0b72f7866c7038ab086d3d5e1cd6271f060fd37defb241949d0582"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-16 18:58:59 +02:00
"digest 0.10.3",
2022-04-14 08:07:59 +02:00
]
2022-05-06 16:02:38 +02:00
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2022-04-14 08:07:59 +02:00
[[package]]
name = "memchr"
2022-05-09 16:17:27 +02:00
version = "2.5.0"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2022-04-14 08:07:59 +02:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
2022-05-01 17:20:31 +02:00
[[package]]
name = "messagebus"
version = "0.9.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81124c365f95dc69d0a6e572220dc57ca2d0148fd130bfb2b54a6aa1506102d5"
dependencies = [
"async-trait",
"ctor",
"dashmap",
"erased-serde",
"futures",
"log",
"messagebus_derive",
"parking_lot 0.11.2",
"serde",
"serde_derive",
"sharded-slab",
"smallvec",
"thiserror",
"tokio",
]
[[package]]
name = "messagebus_derive"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f364a3b76588b4997b63e99e1bf73e2cf37e2546e97fbae4cb2a268a74e57e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-04-14 08:07:59 +02:00
[[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",
]
2022-05-12 08:38:31 +02:00
[[package]]
name = "minidom"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "332592c2149fc7dd40a64fc9ef6f0d65607284b474cef9817d1fc8c7e7b3608e"
dependencies = [
"quick-xml",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
dependencies = [
"adler",
]
[[package]]
name = "mio"
2022-05-09 16:17:27 +02:00
version = "0.8.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 = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
2022-05-09 16:17:27 +02:00
"windows-sys",
2022-04-14 08:07:59 +02:00
]
2022-05-06 11:47:18 +02:00
[[package]]
name = "model"
version = "0.1.0"
dependencies = [
2022-05-08 09:47:05 +02:00
"argon2",
2022-05-06 11:47:18 +02:00
"chrono",
"derive_more",
2022-05-06 16:02:38 +02:00
"fake",
2022-05-08 09:47:05 +02:00
"log",
"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",
"uuid",
"validator 0.15.0",
]
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",
]
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",
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"libc",
"memoffset",
]
[[package]]
name = "nom"
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "num-bigint"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3"
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-04-30 06:58:27 +02:00
version = "4.2.0"
2022-04-18 22:07:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 06:58:27 +02:00
checksum = "c3bd7d544f02ae0fa9e06137962703d043870d7ad6e6d44786d6a5f20679b2c9"
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-05-09 16:17:27 +02:00
version = "0.28.4"
2022-05-08 09:47:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424"
2022-05-08 09:47:05 +02:00
dependencies = [
"memchr",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "once_cell"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2022-04-21 16:06:34 +02:00
[[package]]
name = "openssl"
2022-05-09 16:17:27 +02:00
version = "0.10.40"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "fb81a6430ac911acb25fe5ac8f1d2af1b4ea8a4fdfda0f1ee4292af2e2d8eb0e"
2022-04-21 16:06:34 +02:00
dependencies = [
"bitflags",
"cfg-if",
"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-05-09 16:17:27 +02:00
version = "0.9.73"
2022-04-21 16:06:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-09 16:17:27 +02:00
checksum = "9d5fd19fb3e0a8191c1e34935718976a3e70c112ab9a24af6d7cadccd9d90bc0"
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-04-20 14:30:59 +02:00
"pin-project",
"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-semantic-conventions"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "985cc35d832d412224b2cffe2f9194b1b89b6aa5d0bef76d080dce09d90e62bd"
dependencies = [
"opentelemetry",
]
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",
"log",
"model",
"pretty_env_logger",
"thiserror",
"uuid",
]
2022-05-08 09:47:05 +02:00
[[package]]
name = "os_type"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3df761f6470298359f84fcfb60d86db02acc22c251c37265c07a3d1057d2389"
dependencies = [
"regex",
]
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"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
dependencies = [
"lock_api",
2022-05-09 16:17:27 +02:00
"parking_lot_core 0.9.3",
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 = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"instant",
"libc",
"redox_syscall",
"smallvec",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "parking_lot_core"
2022-05-09 16:17:27 +02:00
version = "0.9.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 = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[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-04-29 20:37:41 +02:00
version = "0.4.1"
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 = "e029e94abc8fb0065241c308f1ac6bc8d20f450e8f7c5f0b25cd9b8d526ba294"
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"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
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",
"log",
"model",
"parking_lot 0.12.0",
"pay_u",
"pretty_env_logger",
"serde",
"thiserror",
"uuid",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
dependencies = [
"maplit",
"pest",
"sha-1 0.8.2",
]
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared",
2022-04-20 14:30:59 +02:00
"rand",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
"uncased",
]
[[package]]
name = "pin-project"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
dependencies = [
2022-04-20 14:30:59 +02:00
"pin-project-internal",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "pin-project-internal"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
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"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
[[package]]
name = "polyval"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cpufeatures",
"opaque-debug 0.3.0",
"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-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro2"
2022-05-09 16:17:27 +02:00
version = "1.0.38"
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 = "9027b48e9d4c9175fa2218adf3557f91c1137021739951d4932f5f8268ac48aa"
2022-04-14 08:07:59 +02:00
dependencies = [
"unicode-xid",
]
2022-05-10 08:23:35 +02:00
[[package]]
name = "pure-rust-locales"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b45c49fc4f91f35bae654f85ebb3a44d60ac64f11b3166ffa609def390c732d8"
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"
2022-05-12 08:38:31 +02:00
[[package]]
name = "quick-xml"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26aab6b48e2590e4a64d1ed808749ba06257882b461d01ca71baeb747074a6dd"
dependencies = [
"memchr",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "quote"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
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"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
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"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd249e82c21598a9a426a4e00dd7adc1d640b22445ec8545feef801d1a74c221"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f51245e1e62e1f1629cbfec37b5793bbabcaeb90f30e94d2ba03564687353e4"
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-04-14 21:40:26 +02:00
"tokio-util 0.6.9",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "redox_syscall"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
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"
version = "1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
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",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "reqwest"
version = "0.11.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
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",
"lazy_static",
"log",
"mime",
2022-04-21 16:06:34 +02:00
"native-tls",
2022-04-18 22:07:52 +02:00
"percent-encoding",
2022-04-20 14:30:59 +02:00
"pin-project-lite",
2022-04-18 22:07:52 +02:00
"rustls 0.20.4",
"rustls-pemfile",
"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-05-09 16:17:27 +02:00
"tokio-rustls 0.23.4",
2022-04-18 22:07:52 +02:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots 0.22.3",
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",
"spin",
"untrusted",
"web-sys",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "rust_decimal"
version = "1.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22dc69eadbf0ee2110b8d20418c0c6edbaefec2811c4963dc17b6344e11fe0f8"
dependencies = [
"arrayvec",
"num-traits",
"serde",
]
2022-05-09 16:17:27 +02:00
[[package]]
name = "rust_decimal_macros"
version = "1.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c70be9367d4bc095d10b48d41b819d09ed4dafc528765a144d32ed1d530654"
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-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-05-09 16:17:27 +02:00
"semver 1.0.9",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "rustls"
version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
dependencies = [
2022-04-20 14:30:59 +02:00
"base64",
2022-04-14 08:07:59 +02:00
"log",
"ring",
2022-04-18 22:07:52 +02:00
"sct 0.6.1",
"webpki 0.21.4",
]
[[package]]
name = "rustls"
version = "0.20.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fbfeb8d0ddb84706bc597a5574ab8912817c52a397f819e5b614e2265206921"
dependencies = [
"log",
"ring",
"sct 0.7.0",
"webpki 0.22.0",
]
[[package]]
name = "rustls-pemfile"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
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"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
[[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"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
dependencies = [
"lazy_static",
"winapi",
]
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]]
name = "sct"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
"ring",
"untrusted",
]
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",
"chrono",
"config",
"derive_more",
"log",
"model",
"parking_lot 0.12.0",
"pretty_env_logger",
"serde",
"sonic-channel",
"thiserror",
"uuid",
]
2022-04-21 16:06:34 +02:00
[[package]]
name = "security-framework"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
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"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7aadc99b3d823229f987d3b5277c00dcff69d5011ed0ed38c20d6aaa66ed7372"
dependencies = [
"console_error_panic_hook",
"cookie",
"dbg",
"enclose",
"futures",
"getrandom",
"gloo-file",
"gloo-timers",
"gloo-utils",
"indexmap",
"js-sys",
"rand",
"serde",
"serde_json",
"uuid",
"version_check 0.9.4",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2022-05-12 08:38:31 +02:00
[[package]]
name = "seed"
version = "0.9.1"
source = "git+https://github.com/seed-rs/seed#689055ef4f466f28dca621c23f5e2df7438bd1bc"
dependencies = [
"console_error_panic_hook",
"cookie",
"dbg",
"enclose",
"futures",
"getrandom",
"gloo-file",
"gloo-timers",
"gloo-utils",
"indexmap",
"js-sys",
"rand",
"serde",
"serde_json",
"uuid",
"version_check 0.9.4",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "seed_heroicons"
version = "0.1.0"
source = "git+https://github.com/mh84/seed_heroicons.git#32569ac5ba9adcffb168fbdaac8b258e99e73d86"
dependencies = [
"git2",
"minidom",
"seed 0.9.1 (git+https://github.com/seed-rs/seed)",
]
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-05-09 16:17:27 +02:00
version = "1.0.9"
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 = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
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"
version = "0.17.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88afc7511b68247bf469e0dff55eb7ef305aab293211242695fd07cc17e36a78"
dependencies = [
"data-encoding",
"reqwest",
"serde",
"serde_json",
"thiserror",
"url",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "serde"
2022-05-05 16:30:25 +02:00
version = "1.0.137"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-05 16:30:25 +02:00
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
2022-04-14 08:07:59 +02:00
dependencies = [
"serde_derive",
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "serde-wasm-bindgen"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5d0927d4115e78b52dfd4cabcb3cc79bd56b94a53cf27c074bf8b83af1765d1"
dependencies = [
"fnv",
"js-sys",
"serde",
"wasm-bindgen",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "serde_derive"
2022-05-05 16:30:25 +02:00
version = "1.0.137"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-05 16:30:25 +02:00
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-05-05 16:30:25 +02:00
version = "1.0.81"
2022-04-14 08:07:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-05 16:30:25 +02:00
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
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"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7868ad3b8196a8a0aea99a8220b124278ee5320a55e4fde97794b6f85b1a377"
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]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
"opaque-debug 0.2.3",
]
[[package]]
name = "sha-1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cpufeatures",
"digest 0.10.3",
]
[[package]]
name = "sha1"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sha2"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-14 08:07:59 +02:00
"cpufeatures",
"digest 0.10.3",
]
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"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
[[package]]
name = "slug"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
dependencies = [
"deunicode",
]
[[package]]
name = "smallvec"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "socket2"
2022-05-09 16:17:27 +02:00
version = "0.4.5"
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 = "ca642ba17f8b2995138b1d7711829c92e98c0a25ea019de790f4f09279c4e296"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
2022-05-09 16:17:27 +02:00
"windows-sys",
2022-04-14 08:07:59 +02:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "sonic-channel"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "560d0acaf12aa19bf4c9e106d23562df65f675bf7b64938d4ec8e8eba7bb4b02"
dependencies = [
"lazy_static",
"regex",
"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"
[[package]]
name = "sqlformat"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4b7922be017ee70900be125523f38bdd644f4f06a1b16e8fa5a8ee8c34bffd4"
dependencies = [
"itertools",
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
2022-04-16 18:58:59 +02:00
version = "0.5.13"
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 = "551873805652ba0d912fec5bbb0f8b4cdd96baf8e2ebf5970e5671092966019b"
2022-04-14 08:07:59 +02:00
dependencies = [
"sqlx-core",
"sqlx-macros",
]
[[package]]
name = "sqlx-core"
2022-04-16 18:58:59 +02:00
version = "0.5.13"
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 = "e48c61941ccf5ddcada342cd59e3e5173b007c509e1e8e990dafc830294d9dc5"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-05-05 16:30:25 +02:00
"ahash 0.7.6",
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",
"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-04-18 22:07:52 +02:00
"rustls 0.19.1",
2022-04-14 08:07:59 +02:00
"serde",
"serde_json",
2022-04-16 18:58:59 +02:00
"sha-1 0.10.0",
2022-04-30 06:58:27 +02:00
"sha2",
2022-04-14 08:07:59 +02:00
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
"time 0.2.27",
"tokio-stream",
"url",
"uuid",
2022-04-18 22:07:52 +02:00
"webpki 0.21.4",
"webpki-roots 0.21.1",
2022-04-14 08:07:59 +02:00
"whoami",
]
[[package]]
name = "sqlx-macros"
2022-04-16 18:58:59 +02:00
version = "0.5.13"
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 = "bc0fba2b0cae21fc00fe6046f8baa4c7fcb49e379f0f592b04696607f69ed2e1"
2022-04-14 08:07:59 +02:00
dependencies = [
"dotenv",
"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-04-16 18:58:59 +02:00
version = "0.5.13"
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 = "4db708cd3e459078f85f39f96a00960bd841f66ee2a669e90bf36907f5a79aae"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"actix-rt",
2022-04-14 08:07:59 +02:00
"once_cell",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-18 22:07:52 +02:00
"tokio-rustls 0.22.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "standback"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
dependencies = [
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version 0.2.3",
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote",
"serde",
"serde_derive",
"syn",
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
[[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-04-29 20:37:41 +02:00
version = "1.0.92"
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 = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
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",
"fastrand",
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tera"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3cac831b615c25bcef632d1cabf864fa05813baad3d526829db18eb70e8b58d"
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",
]
[[package]]
name = "thiserror"
2022-05-06 11:47:18 +02:00
version = "1.0.31"
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 = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2022-04-14 08:07:59 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-05-06 11:47:18 +02:00
version = "1.0.31"
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 = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
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 = "time"
2022-04-29 20:37:41 +02:00
version = "0.1.43"
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 = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2022-04-14 08:07:59 +02:00
dependencies = [
"libc",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "time"
version = "0.2.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros 0.1.1",
2022-05-05 16:30:25 +02:00
"version_check 0.9.4",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "time"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
dependencies = [
2022-04-20 14:30:59 +02:00
"itoa",
2022-04-14 08:07:59 +02:00
"libc",
"num_threads",
"time-macros 0.2.4",
]
[[package]]
name = "time-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
[[package]]
name = "time-macros-impl"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2022-05-09 16:17:27 +02:00
[[package]]
name = "tinytemplate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
dependencies = [
"serde",
"serde_json",
]
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",
"hmac",
"jwt",
"log",
"model",
"parking_lot 0.12.0",
"password-hash",
"pretty_env_logger",
"rand_core",
"serde",
"sha2",
"thiserror",
"uuid",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "tokio"
2022-05-09 16:17:27 +02:00
version = "1.18.2"
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 = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
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
"libc",
"memchr",
2022-04-20 14:30:59 +02:00
"mio",
2022-04-14 08:07:59 +02:00
"num_cpus",
"once_cell",
"parking_lot 0.12.0",
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",
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
2022-04-16 18:57:37 +02:00
[[package]]
name = "tokio-macros"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
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-14 08:07:59 +02:00
[[package]]
name = "tokio-rustls"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6"
dependencies = [
2022-04-18 22:07:52 +02:00
"rustls 0.19.1",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-18 22:07:52 +02:00
"webpki 0.21.4",
]
[[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 = [
"rustls 0.20.4",
2022-04-20 14:30:59 +02:00
"tokio",
2022-04-18 22:07:52 +02:00
"webpki 0.22.0",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "tokio-stream"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"
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"
version = "0.6.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
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"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
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",
"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"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2022-04-14 08:07:59 +02:00
[[package]]
name = "tracing"
2022-04-16 18:58:59 +02:00
version = "0.1.34"
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 = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
2022-04-14 08:07:59 +02:00
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
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-04-29 20:37:41 +02:00
version = "0.1.21"
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 = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
2022-04-14 08:07:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2022-04-16 18:58:59 +02:00
version = "0.1.26"
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 = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
2022-04-14 08:07:59 +02:00
dependencies = [
"lazy_static",
]
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",
]
[[package]]
name = "typenum"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
[[package]]
name = "uncased"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5baeed7327e25054889b9bd4f975f32e5f4c5d434042d59ab6cd4142c0a76ed0"
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"
[[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-normalization"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
[[package]]
name = "unicode-xid"
2022-05-09 16:17:27 +02:00
version = "0.2.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 = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
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"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array 0.14.5",
"subtle",
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"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-05-06 16:02:38 +02:00
"md5",
2022-04-14 08:07:59 +02:00
"serde",
2022-05-06 16:02:38 +02:00
"sha1",
2022-04-14 08:07:59 +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 = [
"idna",
"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 = [
"idna",
"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",
]
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",
2022-04-20 14:30:59 +02:00
"winapi",
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-04-29 20:37:41 +02:00
version = "0.10.2+wasi-snapshot-preview1"
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 = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
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"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
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"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
2022-04-18 22:07:52 +02:00
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
dependencies = [
2022-04-20 14:30:59 +02:00
"cfg-if",
2022-04-18 22:07:52 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
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",
2022-05-10 08:23:35 +02:00
"pure-rust-locales",
2022-05-09 16:17:27 +02:00
"rusty-money",
2022-05-12 08:38:31 +02:00
"seed 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
"seed_heroicons",
2022-05-05 16:30:25 +02:00
"serde",
"serde-wasm-bindgen",
"serde_json",
"wasm-bindgen",
"web-sys",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "web-sys"
version = "0.3.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
"ring",
"untrusted",
]
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"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
dependencies = [
2022-04-18 22:07:52 +02:00
"webpki 0.21.4",
]
[[package]]
name = "webpki-roots"
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf"
dependencies = [
"webpki 0.22.0",
2022-04-14 08:07:59 +02:00
]
2022-05-05 16:30:25 +02:00
[[package]]
name = "whatlang"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a346d2eb29c03618693ed24a29d1acd0c3f2cb08ae58b9669d7461e033cf703"
dependencies = [
"hashbrown 0.7.2",
]
2022-04-14 08:07:59 +02:00
[[package]]
name = "whoami"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524b58fa5a20a2fb3014dd6358b70e6579692a56ef6fce928834e488f42f65e8"
dependencies = [
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[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 = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[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
[[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
[[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
[[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
[[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-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 = [
2022-04-20 14:30:59 +02:00
"winapi",
2022-04-14 08:07:59 +02:00
]
[[package]]
name = "zstd"
version = "0.10.0+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b1365becbe415f3f0fcd024e2f7b45bacfb5bdd055f0dc113571394114e7bdd"
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
version = "4.1.4+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f7cd17c9af1a4d6c24beb1cc54b17e2ef7b593dc92f19e9d9acad8b182bbaee"
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "1.6.3+zstd.1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
dependencies = [
"cc",
"libc",
]