1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00
examples/Cargo.lock

8673 lines
196 KiB
Plaintext
Raw Normal View History

2020-09-16 02:11:49 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
dependencies = [
"lazy_static",
"regex",
]
[[package]]
name = "acme-micro"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18fb402a32ddc56ef7015df8d575c326ea911887ba9b7661ce18786282e89a3"
dependencies = [
"anyhow",
"base64 0.13.1",
"lazy_static",
"log",
"openssl",
"serde",
"serde_json",
2022-12-11 16:25:15 +01:00
"time 0.1.45",
"ureq",
]
2022-03-04 04:45:03 +01:00
[[package]]
name = "actix"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f728064aca1c318585bf4bb04ffcfac9e75e508ab4e8b1bd9ba5dfe04e2cbed5"
dependencies = [
"actix-rt",
"actix_derive",
"bitflags",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-03-04 04:45:03 +01:00
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
"parking_lot 0.12.1",
"pin-project-lite 0.2.9",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2022-03-04 04:45:03 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "actix-broker"
version = "0.4.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e089b5c4d0cf02d72a9eca0b6c80aebff1ccd3d1e99c83d1f7b9baeff39dc5e9"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
2020-09-16 02:11:49 +02:00
"log",
]
[[package]]
name = "actix-casbin-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2020-09-16 02:11:49 +02:00
"casbin",
2023-03-14 04:11:49 +01:00
"env_logger",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "actix-codec"
2023-05-22 13:47:21 +02:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
dependencies = [
"bitflags",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
"tracing",
]
2020-10-20 00:36:53 +02:00
[[package]]
name = "actix-cors"
2022-12-11 16:25:15 +01:00
version = "0.6.4"
2020-10-20 00:36:53 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "b340e9cfa5b08690aae90fb61beb44e9b06f44fe3d0f93781aaa58cfba86245e"
2020-10-20 00:36:53 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-utils",
"actix-web",
2020-10-20 00:36:53 +02:00
"derive_more",
"futures-util",
"log",
"once_cell",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2020-09-16 02:11:49 +02:00
]
2022-01-29 17:06:32 +01:00
[[package]]
name = "actix-files"
2022-08-05 20:43:46 +02:00
version = "0.6.2"
2022-01-29 17:06:32 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-05 20:43:46 +02:00
checksum = "d832782fac6ca7369a70c9ee9a20554623c5e51c76e190ad151780ebea1cf689"
2022-01-29 17:06:32 +01:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-http",
"actix-service",
"actix-utils",
"actix-web",
2022-02-02 16:21:49 +01:00
"askama_escape",
2022-01-29 17:06:32 +01:00
"bitflags",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-01-29 17:06:32 +01:00
"derive_more",
"futures-core",
"http-range",
"log",
"mime",
"mime_guess",
"percent-encoding",
"pin-project-lite 0.2.9",
2022-01-29 17:06:32 +01:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-http"
2023-03-14 03:36:22 +01:00
version = "3.3.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-rt",
"actix-service",
"actix-tls",
"actix-utils",
2023-03-14 03:36:22 +01:00
"ahash 0.8.3",
2023-05-22 13:47:21 +02:00
"base64 0.21.1",
2021-10-06 23:42:44 +02:00
"bitflags",
2022-01-27 03:58:13 +01:00
"brotli",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2021-10-07 00:56:44 +02:00
"bytestring",
2021-10-06 23:42:44 +02:00
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2023-05-22 13:47:21 +02:00
"h2 0.3.19",
2021-10-06 23:42:44 +02:00
"http",
"httparse",
2022-01-27 03:58:13 +01:00
"httpdate 1.0.2",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-02-18 02:44:53 +01:00
"language-tags",
2021-10-06 23:42:44 +02:00
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite 0.2.9",
"rand 0.8.5",
2022-10-16 22:20:01 +02:00
"sha1 0.10.5",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2022-07-09 21:43:47 +02:00
"tracing",
2021-10-06 23:42:44 +02:00
"zstd",
]
2022-02-02 16:50:58 +01:00
[[package]]
name = "actix-http-test"
2023-02-26 22:01:15 +01:00
version = "3.1.0"
2022-02-02 16:50:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "dff10f950882f80a9dc29fb5325db8f66a0692a7c9be3bf547f79e955b699b76"
2022-02-02 16:50:58 +01:00
dependencies = [
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-rt",
"actix-server",
"actix-service",
"actix-tls",
"actix-utils",
"awc",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-02-02 16:50:58 +01:00
"futures-core",
"http",
"log",
"serde",
2022-02-02 16:50:58 +01:00
"serde_json",
"serde_urlencoded",
"slab",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-02-02 16:50:58 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "actix-identity"
2022-10-26 17:51:27 +02:00
version = "0.5.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "1224c9f9593dc27c9077b233ce04adedc1d7febcfc35ee9f53ea3c24df180bec"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-service",
2022-10-26 17:51:27 +02:00
"actix-session",
2022-02-18 02:44:53 +01:00
"actix-utils",
"actix-web",
2022-10-26 17:51:27 +02:00
"anyhow",
"futures-core",
"serde",
2022-10-26 17:51:27 +02:00
"tracing",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-macros"
2022-01-27 03:58:13 +01:00
version = "0.2.3"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2021-10-06 23:42:44 +02:00
dependencies = [
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "actix-multipart"
version = "0.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dee489e3c01eae4d1c35b03c4493f71cb40d93f66b14558feb1b1a807671cc4e"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-multipart-derive",
2022-02-18 02:44:53 +01:00
"actix-utils",
"actix-web",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2020-09-16 02:11:49 +02:00
"derive_more",
2022-01-31 03:45:53 +01:00
"futures-core",
"futures-util",
2020-09-16 02:11:49 +02:00
"httparse",
2022-01-31 03:45:53 +01:00
"local-waker",
2020-09-16 02:11:49 +02:00
"log",
"memchr",
2020-09-16 02:11:49 +02:00
"mime",
"serde",
"serde_json",
"serde_plain",
"tempfile",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
]
[[package]]
name = "actix-multipart-derive"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ec592f234db8a253cf80531246a4407c8a70530423eea80688a6c5a44a110e7"
dependencies = [
2023-03-14 03:36:22 +01:00
"darling 0.14.4",
"parse-size",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "actix-protobuf"
2022-10-26 17:51:27 +02:00
version = "0.9.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "d2e1151cdf1d5f30115da7c8e3e4cefadfb6d396973d75354647c4e8fae3a14f"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2020-09-16 02:11:49 +02:00
"derive_more",
"futures-util",
"prost",
]
[[package]]
name = "actix-redis"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38446dc11c743f4f0023b1067c7cfb8f2548f24418e31a193b324e35fa059279"
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
"actix-rt",
"actix-service",
"actix-tls",
"actix-web",
2022-10-16 20:14:40 +02:00
"backoff",
"derive_more",
"futures-core",
"log",
2022-10-16 20:14:40 +02:00
"redis-async",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
"tokio 1.28.1",
"tokio-util 0.7.8",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-router"
2022-10-16 22:20:01 +02:00
version = "0.5.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
2021-10-06 23:42:44 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"bytestring",
2020-09-16 02:11:49 +02:00
"http",
"regex",
"serde",
2022-10-16 22:20:01 +02:00
"tracing",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-rt"
2023-02-26 22:01:15 +01:00
version = "2.8.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-macros",
2021-10-06 23:42:44 +02:00
"futures-core",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-server"
2023-02-26 22:01:15 +01:00
version = "2.2.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-rt",
"actix-service",
"actix-utils",
2021-10-06 23:42:44 +02:00
"futures-core",
2022-01-27 03:58:13 +01:00
"futures-util",
2023-02-26 22:01:15 +01:00
"mio 0.8.6",
2021-10-06 23:42:44 +02:00
"num_cpus",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-03-15 18:32:27 +01:00
"tracing",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-service"
2022-01-27 03:58:13 +01:00
version = "2.0.2"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2021-10-06 23:42:44 +02:00
dependencies = [
"futures-core",
"paste",
"pin-project-lite 0.2.9",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "actix-session"
2022-10-16 22:20:01 +02:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "43da8b818ae1f11049a4d218975345fe8e56ce5a5f92c11f972abcff5ff80e87"
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
"actix-redis",
"actix-service",
"actix-utils",
"actix-web",
"anyhow",
"async-trait",
"derive_more",
"futures-core",
"rand 0.8.5",
"serde",
"serde_json",
"tracing",
]
2022-02-02 16:50:58 +01:00
[[package]]
name = "actix-test"
2023-02-26 22:01:15 +01:00
version = "0.1.1"
2022-02-02 16:50:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "a7c7d37a955bfa3ccde83c12bc8987262abaf6c90ae9dd24fcdbd78c6c01ffaf"
2022-02-02 16:50:58 +01:00
dependencies = [
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-http",
2022-02-02 16:50:58 +01:00
"actix-http-test",
2022-02-18 02:44:53 +01:00
"actix-rt",
"actix-service",
"actix-utils",
"actix-web",
"awc",
2022-02-02 16:50:58 +01:00
"futures-core",
"futures-util",
"log",
"serde",
2022-02-02 16:50:58 +01:00
"serde_json",
"serde_urlencoded",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-02-02 16:50:58 +01:00
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "actix-tls"
version = "3.0.3"
2022-01-31 03:45:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
2022-01-31 03:45:53 +01:00
dependencies = [
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-rt",
"actix-service",
"actix-utils",
2022-01-31 03:45:53 +01:00
"futures-core",
2022-02-02 02:17:10 +01:00
"http",
2022-01-31 03:45:53 +01:00
"log",
2022-02-02 01:44:58 +01:00
"openssl",
"pin-project-lite 0.2.9",
2022-02-02 03:02:47 +01:00
"tokio-openssl",
2022-12-11 16:31:32 +01:00
"tokio-rustls",
2023-05-22 13:47:21 +02:00
"tokio-util 0.7.8",
2022-12-11 16:25:15 +01:00
"webpki-roots 0.22.6",
2022-01-31 03:45:53 +01:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-utils"
2022-10-26 17:51:27 +02:00
version = "3.0.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2021-10-06 23:42:44 +02:00
dependencies = [
"local-waker",
"pin-project-lite 0.2.9",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "actix-web"
2023-02-26 22:01:15 +01:00
version = "4.3.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-tls",
"actix-utils",
"actix-web-codegen",
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-02-25 22:07:22 +01:00
"bytestring",
2021-10-06 23:42:44 +02:00
"cfg-if 1.0.0",
2022-12-30 17:48:10 +01:00
"cookie 0.16.2",
2021-10-06 23:42:44 +02:00
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2022-10-16 22:20:01 +02:00
"http",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-02-18 02:44:53 +01:00
"language-tags",
2021-10-06 23:42:44 +02:00
"log",
"mime",
"once_cell",
"pin-project-lite 0.2.9",
2021-10-06 23:42:44 +02:00
"regex",
"serde",
2021-10-06 23:42:44 +02:00
"serde_json",
"serde_urlencoded",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
2021-10-06 23:42:44 +02:00
"url",
]
[[package]]
name = "actix-web-actors"
2023-02-26 22:01:15 +01:00
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "bf6e9ccc371cfddbed7aa842256a4abc7a6dcac9f3fce392fe1d0f68cfd136b2"
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-http",
"actix-web",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"bytestring",
"futures-core",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "actix-web-codegen"
2023-02-26 22:01:15 +01:00
version = "4.2.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-router",
2021-10-06 23:42:44 +02:00
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "actix-web-cors"
version = "1.0.0"
dependencies = [
2022-02-17 21:59:04 +01:00
"actix-cors",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
2022-10-16 22:20:01 +02:00
[[package]]
name = "actix-web-lab"
2023-03-14 03:40:02 +01:00
version = "0.19.1"
2022-10-16 22:20:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:40:02 +01:00
checksum = "9e9f49571dfcf49ed79c6e7a645e9554ae01925eb55fa6e3b2501ceeed24d7e7"
2022-10-16 22:20:01 +02:00
dependencies = [
"actix-http",
"actix-router",
"actix-service",
"actix-utils",
"actix-web",
"actix-web-lab-derive",
2023-02-26 22:01:15 +01:00
"ahash 0.8.3",
2022-10-16 22:20:01 +02:00
"arc-swap",
"async-trait",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-10-16 22:20:01 +02:00
"bytestring",
"csv",
"derive_more",
"futures-core",
"futures-util",
"http",
2022-12-11 16:25:15 +01:00
"impl-more",
2022-10-16 22:20:01 +02:00
"itertools",
"local-channel",
2022-12-11 16:25:15 +01:00
"mediatype",
2022-10-16 22:20:01 +02:00
"mime",
"once_cell",
"pin-project-lite 0.2.9",
"regex",
"serde",
"serde_html_form",
"serde_json",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-08-28 19:41:16 +02:00
"tracing",
]
2022-03-15 19:17:19 +01:00
[[package]]
2022-07-09 21:48:05 +02:00
name = "actix-web-lab-derive"
2023-03-14 03:40:02 +01:00
version = "0.19.0"
2022-03-15 19:17:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:40:02 +01:00
checksum = "16294584c7794939b1e5711f28e7cae84ef30e62a520db3f9af425f85269bcd2"
2022-03-15 19:17:19 +01:00
dependencies = [
2022-07-09 21:48:05 +02:00
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-03-15 19:17:19 +01:00
]
2022-07-11 02:44:46 +02:00
[[package]]
name = "actix-ws"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "535aec173810be3ca6f25dd5b4d431ae7125d62000aa3cbae1ec739921b02cf3"
dependencies = [
"actix-codec",
"actix-http",
"actix-web",
"futures-core",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-07-11 02:44:46 +02:00
]
[[package]]
name = "actix_derive"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d44b8fee1ced9671ba043476deddef739dd0959bf77030b26b738cc591737a7"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "adler"
2021-10-07 00:56:44 +02:00
version = "1.0.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-09-16 02:11:49 +02:00
[[package]]
name = "aead"
2023-05-22 13:47:21 +02:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [
2022-10-16 22:20:01 +02:00
"crypto-common",
2022-08-05 20:43:46 +02:00
"generic-array",
]
[[package]]
name = "aes"
2022-12-11 16:25:15 +01:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
dependencies = [
"cfg-if 1.0.0",
"cipher",
"cpufeatures",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "aes-gcm"
2023-05-22 13:47:21 +02:00
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
2022-01-31 03:45:53 +01:00
"subtle",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "aes-gcm-siv"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"polyval",
"subtle",
"zeroize",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "ahash"
2022-01-27 03:58:13 +01:00
version = "0.7.6"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-10-06 23:42:44 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
2021-10-06 23:42:44 +02:00
"once_cell",
2022-02-18 02:44:53 +01:00
"version_check",
2021-10-06 23:42:44 +02:00
]
2022-08-28 19:40:59 +02:00
[[package]]
name = "ahash"
2023-02-26 22:01:15 +01:00
version = "0.8.3"
2022-08-28 19:40:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
2022-08-28 19:40:59 +02:00
dependencies = [
"cfg-if 1.0.0",
2022-12-11 16:25:15 +01:00
"const-random",
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
2022-08-28 19:40:59 +02:00
"once_cell",
"version_check",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "aho-corasick"
2022-12-11 16:25:15 +01:00
version = "0.7.20"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
2020-09-16 02:11:49 +02:00
dependencies = [
"memchr",
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "aho-corasick"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
dependencies = [
"memchr",
]
2020-09-16 02:11:49 +02:00
[[package]]
2022-01-27 03:58:13 +01:00
name = "alloc-no-stdlib"
2022-10-16 22:20:01 +02:00
version = "2.0.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2020-09-16 02:11:49 +02:00
[[package]]
2022-01-27 03:58:13 +01:00
name = "alloc-stdlib"
2022-10-16 22:20:01 +02:00
version = "0.2.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-01-27 03:58:13 +01:00
"alloc-no-stdlib",
2020-09-16 02:11:49 +02:00
]
2022-08-28 19:40:59 +02:00
[[package]]
name = "android_system_properties"
2022-09-11 00:07:55 +02:00
version = "0.1.5"
2022-08-28 19:40:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-28 19:40:59 +02:00
dependencies = [
"libc",
]
2020-09-16 02:11:49 +02:00
[[package]]
2022-01-27 03:58:13 +01:00
name = "annotate-snippets"
version = "0.9.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "c3b9d411ecbaf79885c6df4d75fff75858d5995ff25385657a28af47e82f9c36"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-01-27 03:58:13 +01:00
"unicode-width",
"yansi-term",
2020-09-16 02:11:49 +02:00
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "anstream"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
[[package]]
name = "anstyle-parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "anyhow"
2023-05-22 13:47:21 +02:00
version = "1.0.71"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
2022-12-30 17:23:24 +01:00
[[package]]
name = "apalis"
2023-01-07 16:23:31 +01:00
version = "0.3.6"
2022-12-30 17:23:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "d1dfa7394642efc1aa1f07fd069019b98b24519962e2791c8b396b450457ba3a"
2022-12-30 17:23:24 +01:00
dependencies = [
"apalis-core",
"apalis-redis",
]
[[package]]
name = "apalis-core"
2023-01-07 16:23:31 +01:00
version = "0.3.6"
2022-12-30 17:23:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "f5c28b120411d25c16ad0dfdfa1d41b0661717ce99c77fe45d3d6f5c4f4e089d"
2022-12-30 17:23:24 +01:00
dependencies = [
"anyhow",
"async-trait",
"chrono",
2023-05-22 13:47:21 +02:00
"futures 0.3.28",
2022-12-30 17:23:24 +01:00
"http",
"log",
"pin-project-lite 0.2.9",
"serde",
"serde_json",
"strum",
"thiserror",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-12-30 17:23:24 +01:00
"tower",
"tracing",
"tracing-futures",
"uuid 0.8.2",
]
[[package]]
name = "apalis-redis"
2023-01-07 16:23:31 +01:00
version = "0.3.6"
2022-12-30 17:23:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "04f8bebf6d1c5c3354e5e5c1fe4bead7ad70209de0066b6f021002322b5d0c45"
2022-12-30 17:23:24 +01:00
dependencies = [
"apalis-core",
"async-stream",
"async-trait",
"chrono",
2023-05-22 13:47:21 +02:00
"futures 0.3.28",
2022-12-30 17:23:24 +01:00
"log",
"redis 0.21.7",
"serde",
"serde_json",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-12-30 17:23:24 +01:00
"uuid 0.8.2",
]
[[package]]
name = "arc-swap"
2023-01-07 16:23:31 +01:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
2020-09-16 02:11:49 +02:00
[[package]]
name = "arrayref"
2023-05-22 13:47:21 +02:00
version = "0.3.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
2020-09-16 02:11:49 +02:00
2022-01-27 03:58:13 +01:00
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
2021-04-26 13:32:32 +02:00
[[package]]
name = "ascii"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e"
2022-02-17 22:29:55 +01:00
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
2020-09-16 02:11:49 +02:00
[[package]]
name = "askama"
2023-03-14 04:11:49 +01:00
version = "0.12.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 04:11:49 +01:00
checksum = "47cbc3cf73fa8d9833727bbee4835ba5c421a0d65b72daf9a7b5d0e0f9cfb57e"
2020-09-16 02:11:49 +02:00
dependencies = [
"askama_derive",
2022-02-02 16:21:49 +01:00
"askama_escape",
2023-05-22 13:47:21 +02:00
"humansize 2.1.3",
2023-03-14 04:11:49 +01:00
"num-traits",
"percent-encoding",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "askama_derive"
2023-05-22 13:47:21 +02:00
version = "0.12.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "c22fbe0413545c098358e56966ff22cdd039e10215ae213cfbd65032b119fc94"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-03-14 04:11:49 +01:00
"basic-toml",
"mime",
"mime_guess",
"nom",
"proc-macro2",
2023-03-14 04:11:49 +01:00
"quote",
"serde",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "askama_escape"
version = "0.10.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
2020-09-16 02:11:49 +02:00
[[package]]
name = "assert-json-diff"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4259cbe96513d2f1073027a259fc2ca917feb3026a5a8d984e3628e490255cc0"
dependencies = [
"extend",
"serde",
"serde_json",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "async-channel"
2022-12-11 16:25:15 +01:00
version = "1.8.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
2020-09-16 02:11:49 +02:00
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
2022-10-16 20:24:17 +02:00
[[package]]
name = "async-data"
version = "1.0.0"
dependencies = [
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-10-16 20:24:17 +02:00
"log",
]
[[package]]
name = "async-graphql"
2023-05-22 13:47:21 +02:00
version = "5.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6ae09afb01514b3dbd6328547b2b11fcbcb0205d9c5e6f2e17e60cb166a82d7f"
dependencies = [
"async-graphql-derive",
"async-graphql-parser",
"async-graphql-value",
"async-stream",
"async-trait",
"base64 0.13.1",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-02-17 22:29:55 +01:00
"fast_chemail",
"fnv",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"futures-util",
2023-01-07 16:23:31 +01:00
"handlebars",
2021-10-07 00:56:44 +02:00
"http",
"indexmap",
2021-10-07 00:56:44 +02:00
"mime",
"multer",
"num-traits",
"once_cell",
"pin-project-lite 0.2.9",
"regex",
"serde",
"serde_json",
2022-10-26 17:51:27 +02:00
"serde_urlencoded",
2022-07-10 00:11:36 +02:00
"static_assertions",
"tempfile",
"thiserror",
]
[[package]]
name = "async-graphql-actix-web"
2023-05-22 13:47:21 +02:00
version = "5.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "c801ad138c94883889c9e3843ce9cf4829023d5eb3df69e863c898d220193d0d"
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-02-18 02:44:53 +01:00
"actix-http",
"actix-web",
"actix-web-actors",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"async-channel",
"async-graphql",
2022-02-17 22:29:55 +01:00
"futures-channel",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"futures-util",
"serde_json",
2022-02-17 22:29:55 +01:00
"thiserror",
]
[[package]]
name = "async-graphql-demo"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-02-17 22:29:55 +01:00
"actix-cors",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"async-graphql",
"async-graphql-actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-17 22:29:55 +01:00
"log",
"slab",
]
[[package]]
name = "async-graphql-derive"
2023-05-22 13:47:21 +02:00
version = "5.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "60ae62851dd3ff9a7550aee75e848e8834b75285b458753e98dd71d0733ad3f2"
dependencies = [
"Inflector",
"async-graphql-parser",
2023-03-14 03:36:22 +01:00
"darling 0.14.4",
"proc-macro-crate 1.3.1",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
"thiserror",
]
[[package]]
name = "async-graphql-parser"
2023-05-22 13:47:21 +02:00
version = "5.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "9e6ee332acd99d2c50c3443beae46e9ed784c205eead9a668b7b5118b4a60a8b"
dependencies = [
"async-graphql-value",
"pest",
"serde",
"serde_json",
]
[[package]]
name = "async-graphql-value"
2023-05-22 13:47:21 +02:00
version = "5.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "122da50452383410545b9428b579f4cda5616feb6aa0aff0003500c53fcff7b7"
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-01-27 03:58:13 +01:00
"indexmap",
"serde",
"serde_json",
]
[[package]]
name = "async-stream"
2023-05-22 13:47:21 +02:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
dependencies = [
"async-stream-impl",
"futures-core",
2023-02-26 22:01:15 +01:00
"pin-project-lite 0.2.9",
]
[[package]]
name = "async-stream-impl"
2023-05-22 13:47:21 +02:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "async-trait"
2023-05-22 13:47:21 +02:00
version = "0.1.68"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "async_pg"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2020-09-16 02:11:49 +02:00
"config",
"deadpool-postgres",
"derive_more",
"dotenv",
"serde",
2020-09-16 02:11:49 +02:00
"tokio-pg-mapper",
"tokio-pg-mapper-derive",
"tokio-postgres",
]
[[package]]
name = "autocfg"
version = "1.1.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-09-16 02:11:49 +02:00
2022-02-02 02:17:10 +01:00
[[package]]
name = "awc"
2023-02-26 22:01:15 +01:00
version = "3.1.1"
2022-02-02 02:17:10 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "87ef547a81796eb2dfe9b345aba34c2e08391a0502493711395b36dd64052b69"
2022-02-02 02:17:10 +01:00
dependencies = [
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-http",
"actix-rt",
"actix-service",
"actix-tls",
"actix-utils",
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
2023-05-22 13:47:21 +02:00
"base64 0.21.1",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-02-02 02:17:10 +01:00
"cfg-if 1.0.0",
2022-12-30 17:48:10 +01:00
"cookie 0.16.2",
2022-02-02 02:17:10 +01:00
"derive_more",
"futures-core",
"futures-util",
2023-05-22 13:47:21 +02:00
"h2 0.3.19",
2022-02-02 02:17:10 +01:00
"http",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-02-02 02:17:10 +01:00
"log",
"mime",
2022-02-25 22:07:22 +01:00
"openssl",
2022-02-02 02:17:10 +01:00
"percent-encoding",
"pin-project-lite 0.2.9",
"rand 0.8.5",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
"serde",
2022-02-02 02:17:10 +01:00
"serde_json",
"serde_urlencoded",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-02-02 02:17:10 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "awc_https"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
"awc",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-02 02:17:10 +01:00
"log",
"mime",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2022-12-11 16:25:15 +01:00
"webpki-roots 0.22.6",
2020-09-16 02:11:49 +02:00
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "aws-config"
version = "0.54.1"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3d1e2a1f1ab3ac6c4b884e37413eaa03eb9d901e4fc68ee8f5c1d49721680e"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-http",
"aws-sdk-sso",
"aws-sdk-sts",
"aws-smithy-async",
"aws-smithy-client",
"aws-smithy-http",
"aws-smithy-http-tower",
"aws-smithy-json",
"aws-smithy-types",
"aws-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"hex",
"http",
2023-05-22 13:47:21 +02:00
"hyper 0.14.26",
2022-08-01 02:17:59 +02:00
"ring",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
"tokio 1.28.1",
2022-08-01 02:17:59 +02:00
"tower",
"tracing",
"zeroize",
]
[[package]]
name = "aws-credential-types"
version = "0.54.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb0696a0523a39a19087747e4dafda0362dc867531e3d72a3f195564c84e5e08"
dependencies = [
"aws-smithy-async",
"aws-smithy-types",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tracing",
"zeroize",
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "aws-endpoint"
version = "0.54.1"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80a4f935ab6a1919fbfd6102a80c4fccd9ff5f47f94ba154074afe1051903261"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-http",
2022-10-26 17:51:27 +02:00
"aws-smithy-types",
2022-08-01 02:17:59 +02:00
"aws-types",
"http",
"regex",
"tracing",
]
[[package]]
name = "aws-http"
version = "0.54.1"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82976ca4e426ee9ca3ffcf919d9b2c8d14d0cd80d43cc02173737a8f07f28d4d"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-smithy-http",
"aws-smithy-types",
"aws-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"http",
"http-body 0.4.5",
"lazy_static",
"percent-encoding",
"pin-project-lite 0.2.9",
"tracing",
]
[[package]]
name = "aws-sdk-s3"
version = "0.24.0"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1533be023eeac69668eb718b1c48af7bd5e26305ed770553d2877ab1f7507b68"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-endpoint",
"aws-http",
"aws-sig-auth",
"aws-sigv4",
"aws-smithy-async",
2022-10-26 17:51:27 +02:00
"aws-smithy-checksums",
2022-08-01 02:17:59 +02:00
"aws-smithy-client",
"aws-smithy-eventstream",
"aws-smithy-http",
"aws-smithy-http-tower",
"aws-smithy-json",
2022-08-01 02:17:59 +02:00
"aws-smithy-types",
"aws-smithy-xml",
"aws-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-10-26 17:51:27 +02:00
"bytes-utils",
2023-01-07 16:23:31 +01:00
"fastrand",
2022-08-01 02:17:59 +02:00
"http",
2022-10-26 17:51:27 +02:00
"http-body 0.4.5",
"once_cell",
"percent-encoding",
"regex",
2022-08-01 02:17:59 +02:00
"tokio-stream",
"tower",
2022-10-26 17:51:27 +02:00
"tracing",
"url",
2022-08-01 02:17:59 +02:00
]
[[package]]
name = "aws-sdk-sso"
version = "0.24.0"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca0119bacf0c42f587506769390983223ba834e605f049babe514b2bd646dbb2"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-endpoint",
"aws-http",
"aws-sig-auth",
"aws-smithy-async",
"aws-smithy-client",
"aws-smithy-http",
"aws-smithy-http-tower",
"aws-smithy-json",
"aws-smithy-types",
"aws-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"http",
"regex",
2022-08-01 02:17:59 +02:00
"tokio-stream",
"tower",
]
[[package]]
name = "aws-sdk-sts"
version = "0.24.0"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "270b6a33969ebfcb193512fbd5e8ee5306888ad6c6d5d775cdbfb2d50d94de26"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-endpoint",
"aws-http",
"aws-sig-auth",
"aws-smithy-async",
"aws-smithy-client",
"aws-smithy-http",
"aws-smithy-http-tower",
"aws-smithy-json",
2022-08-01 02:17:59 +02:00
"aws-smithy-query",
"aws-smithy-types",
"aws-smithy-xml",
"aws-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"http",
"regex",
2022-08-01 02:17:59 +02:00
"tower",
2023-01-07 16:23:31 +01:00
"tracing",
2022-08-01 02:17:59 +02:00
]
[[package]]
name = "aws-sig-auth"
version = "0.54.1"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "660a02a98ab1af83bd8d714afbab2d502ba9b18c49e7e4cddd6bf8837ff778cb"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-sigv4",
"aws-smithy-eventstream",
"aws-smithy-http",
"aws-types",
"http",
"tracing",
]
[[package]]
name = "aws-sigv4"
version = "0.54.2"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86529e7b64d902efea8fff52c1b2529368d04f90305cf632729e3713f6b57dc0"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-eventstream",
"aws-smithy-http",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"form_urlencoded",
"hex",
2023-01-07 16:23:31 +01:00
"hmac",
2022-08-01 02:17:59 +02:00
"http",
"once_cell",
"percent-encoding",
"regex",
2023-01-07 16:23:31 +01:00
"sha2",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
2022-08-01 02:17:59 +02:00
"tracing",
]
[[package]]
name = "aws-smithy-async"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63c712a28a4f2f2139759235c08bf98aca99d4fdf1b13c78c5f95613df0a5db9"
2022-08-01 02:17:59 +02:00
dependencies = [
"futures-util",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-08-01 02:17:59 +02:00
"tokio-stream",
]
2022-10-26 17:51:27 +02:00
[[package]]
name = "aws-smithy-checksums"
version = "0.54.4"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3875fb4b28606a5368a048016a28c15707f2b21238d5b2e4a23198f590e92c4"
2022-10-26 17:51:27 +02:00
dependencies = [
"aws-smithy-http",
"aws-smithy-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-10-26 17:51:27 +02:00
"crc32c",
"crc32fast",
"hex",
"http",
"http-body 0.4.5",
"md-5",
"pin-project-lite 0.2.9",
"sha1 0.10.5",
"sha2",
"tracing",
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "aws-smithy-client"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "104ca17f56cde00a10207169697dfe9c6810db339d52fb352707e64875b30a44"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-http-tower",
"aws-smithy-protocol-test",
2022-08-01 02:17:59 +02:00
"aws-smithy-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"fastrand",
"http",
"http-body 0.4.5",
2023-05-22 13:47:21 +02:00
"hyper 0.14.26",
2022-08-01 02:17:59 +02:00
"hyper-rustls",
"lazy_static",
"pin-project-lite 0.2.9",
"serde",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-08-01 02:17:59 +02:00
"tower",
"tracing",
]
[[package]]
name = "aws-smithy-eventstream"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac250d8c0e42af0097a6837ffc5a6fb9f8ba4107bb53124c047c91bc2a58878f"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"crc32fast",
]
[[package]]
name = "aws-smithy-http"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "873f316f1833add0d3aa54ed1b0cd252ddd88c792a0cf839886400099971e844"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-eventstream",
"aws-smithy-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"bytes-utils",
"futures-core",
"http",
"http-body 0.4.5",
2023-05-22 13:47:21 +02:00
"hyper 0.14.26",
2022-08-01 02:17:59 +02:00
"once_cell",
"percent-encoding",
"pin-project-lite 0.2.9",
2022-12-11 16:31:32 +01:00
"pin-utils",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2022-08-01 02:17:59 +02:00
"tracing",
]
[[package]]
name = "aws-smithy-http-tower"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f38231d3f5dac9ac7976f44e12803add1385119ffca9e5f050d8e980733d164"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-http",
2023-01-07 16:23:31 +01:00
"aws-smithy-types",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"http",
"http-body 0.4.5",
"pin-project-lite 0.2.9",
"tower",
"tracing",
]
[[package]]
name = "aws-smithy-json"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bd83ff2b79e9f729746fcc8ad798676b68fe6ea72986571569a5306a277a182"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-types",
]
[[package]]
name = "aws-smithy-protocol-test"
version = "0.54.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4d1c9bcb35ce11055ec128dab2c66a7ed47e2dfff99883e32c21a1ab6d6bee6"
dependencies = [
"assert-json-diff",
"http",
"pretty_assertions",
"regex",
"roxmltree",
"serde_json",
"thiserror",
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "aws-smithy-query"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2f0445dafe9d2cd50b44339ae3c3ed46549aad8ac696c52ad660b3e7ae8682b"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-smithy-types",
"urlencoding",
]
[[package]]
name = "aws-smithy-types"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8161232eda10290f5136610a1eb9de56aceaccd70c963a26a260af20ac24794f"
2022-08-01 02:17:59 +02:00
dependencies = [
2023-01-07 16:23:31 +01:00
"base64-simd",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-08-01 02:17:59 +02:00
"num-integer",
"ryu",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
2022-08-01 02:17:59 +02:00
]
[[package]]
name = "aws-smithy-xml"
version = "0.54.4"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343ffe9a9bb3f542675f4df0e0d5933513d6ad038ca3907ad1767ba690a99684"
2022-08-01 02:17:59 +02:00
dependencies = [
"xmlparser",
]
[[package]]
name = "aws-types"
version = "0.54.1"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8f15b34253b68cde08e39b0627cc6101bcca64351229484b4743392c035d057"
2022-08-01 02:17:59 +02:00
dependencies = [
"aws-credential-types",
2022-08-01 02:17:59 +02:00
"aws-smithy-async",
"aws-smithy-client",
"aws-smithy-http",
"aws-smithy-types",
"http",
"rustc_version 0.4.0",
"tracing",
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "background-jobs"
version = "1.0.0"
dependencies = [
"actix-web",
"anyhow",
"apalis",
"chrono",
"dotenv",
"env_logger",
"log",
"rand 0.8.5",
"serde",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2022-12-30 17:23:24 +01:00
]
[[package]]
name = "backoff"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
dependencies = [
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
"instant",
"rand 0.8.5",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "base-x"
2022-07-09 21:43:47 +02:00
version = "0.2.11"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 21:43:47 +02:00
checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
2020-09-16 02:11:49 +02:00
2020-10-30 05:22:24 +01:00
[[package]]
name = "base64"
2022-10-26 17:51:27 +02:00
version = "0.13.1"
2020-10-30 05:22:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2020-10-30 05:22:24 +01:00
[[package]]
name = "base64"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
2023-02-26 22:01:15 +01:00
[[package]]
name = "base64"
2023-05-22 13:47:21 +02:00
version = "0.21.1"
2023-02-26 22:01:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105"
2023-02-26 22:01:15 +01:00
2023-01-07 16:23:31 +01:00
[[package]]
name = "base64-simd"
version = "0.8.0"
2023-01-07 16:23:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
2023-01-07 16:23:31 +01:00
dependencies = [
"outref",
"vsimd",
2023-01-07 16:23:31 +01:00
]
2023-03-14 04:11:49 +01:00
[[package]]
name = "basic-toml"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c0de75129aa8d0cceaf750b89013f0e08804d6ec61416da787b35ad0d7cddf1"
dependencies = [
"serde",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "basics"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-files",
2022-10-16 20:14:40 +02:00
"actix-session",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-02-02 02:43:27 +01:00
"async-stream",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-02 02:43:27 +01:00
"log",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "bigdecimal"
2023-05-22 13:47:21 +02:00
version = "0.3.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"num-bigint",
2020-09-16 02:11:49 +02:00
"num-integer",
"num-traits",
2020-09-16 02:11:49 +02:00
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "bindgen"
2022-10-26 17:51:27 +02:00
version = "0.59.2"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
2022-07-10 00:11:36 +02:00
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "bitflags"
2021-10-07 00:56:44 +02:00
version = "1.3.2"
2021-03-03 15:37:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-03-03 15:37:17 +01:00
2022-07-10 00:11:36 +02:00
[[package]]
name = "bitvec"
2022-12-11 16:25:15 +01:00
version = "1.0.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
2022-07-10 00:11:36 +02:00
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "blake2b_simd"
2023-02-26 22:01:15 +01:00
version = "1.0.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "3c2f0dc9a68c6317d884f97cc36cf5a3d20ba14ce404227df55e1af708ab04bc"
2020-09-16 02:11:49 +02:00
dependencies = [
"arrayref",
2022-10-26 17:51:27 +02:00
"arrayvec",
2023-03-14 03:36:22 +01:00
"constant_time_eq 0.2.5",
2020-09-16 02:11:49 +02:00
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "block-buffer"
2023-03-14 03:36:22 +01:00
version = "0.10.4"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-01-27 03:58:13 +01:00
dependencies = [
2022-08-05 20:43:46 +02:00
"generic-array",
2020-09-16 02:11:49 +02:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "borsh"
2023-05-22 13:47:21 +02:00
version = "0.10.3"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
2022-12-11 16:25:15 +01:00
dependencies = [
"borsh-derive",
2023-02-26 22:01:15 +01:00
"hashbrown 0.13.2",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "borsh-derive"
2023-05-22 13:47:21 +02:00
version = "0.10.3"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
2022-12-11 16:25:15 +01:00
dependencies = [
"borsh-derive-internal",
"borsh-schema-derive-internal",
"proc-macro-crate 0.1.5",
"proc-macro2",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "borsh-derive-internal"
2023-05-22 13:47:21 +02:00
version = "0.10.3"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
2022-12-11 16:25:15 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "borsh-schema-derive-internal"
2023-05-22 13:47:21 +02:00
version = "0.10.3"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
2022-12-11 16:25:15 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-11 16:25:15 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
2022-01-27 03:58:13 +01:00
name = "brotli"
version = "3.3.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-01-27 03:58:13 +01:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-01-27 03:58:13 +01:00
name = "brotli-decompressor"
2023-02-26 22:01:15 +01:00
version = "2.3.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-01-27 03:58:13 +01:00
"alloc-no-stdlib",
"alloc-stdlib",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "bson"
2022-01-27 03:58:13 +01:00
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "de0aa578035b938855a710ba58d43cfb4d435f3619f99236fb35922a574d6cb1"
dependencies = [
"base64 0.13.1",
"chrono",
"hex",
"lazy_static",
"linked-hash-map",
"rand 0.7.3",
"serde",
"serde_json",
2022-07-10 00:39:21 +02:00
"uuid 0.8.2",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "bson"
2023-05-22 13:47:21 +02:00
version = "2.6.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "9aeb8bae494e49dbc330dd23cf78f6f7accee22f640ce3ab17841badaa4ce232"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
"base64 0.13.1",
2023-03-14 03:36:22 +01:00
"bitvec",
2021-10-06 23:42:44 +02:00
"hex",
"indexmap",
2023-03-14 03:36:22 +01:00
"js-sys",
2021-10-06 23:42:44 +02:00
"lazy_static",
"rand 0.8.5",
"serde",
2021-10-06 23:42:44 +02:00
"serde_bytes",
"serde_json",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
"uuid 1.3.3",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "bstr"
2023-05-22 13:47:21 +02:00
version = "1.5.0"
2023-01-07 16:23:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5"
2023-01-07 16:23:31 +01:00
dependencies = [
"memchr",
"serde",
]
2021-03-03 17:38:53 +01:00
[[package]]
name = "buf-min"
2022-12-11 16:25:15 +01:00
version = "0.7.1"
2021-03-03 17:38:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "22d5698cf6842742ed64805705798f8b351fff53fa546fd45c52184bee58dc90"
2021-03-03 17:38:53 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
[[package]]
name = "bumpalo"
2023-05-22 13:47:21 +02:00
version = "3.12.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
2020-09-16 02:11:49 +02:00
2022-12-11 16:25:15 +01:00
[[package]]
name = "bytecheck"
2023-05-22 13:47:21 +02:00
version = "0.6.11"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
2022-12-11 16:25:15 +01:00
dependencies = [
"bytecheck_derive",
"ptr_meta",
2023-03-14 03:36:22 +01:00
"simdutf8",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "bytecheck_derive"
2023-05-22 13:47:21 +02:00
version = "0.6.11"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
2022-12-11 16:25:15 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-11 16:25:15 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "byteorder"
2021-10-07 00:56:44 +02:00
version = "1.4.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-09-16 02:11:49 +02:00
2022-12-30 17:23:24 +01:00
[[package]]
name = "bytes"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
dependencies = [
"byteorder",
"iovec",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "bytes"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2021-03-03 17:38:53 +01:00
[[package]]
name = "bytes"
2023-02-26 22:01:15 +01:00
version = "1.4.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2020-09-16 02:11:49 +02:00
dependencies = [
"serde",
2020-09-16 02:11:49 +02:00
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "bytes-utils"
2022-09-11 00:07:55 +02:00
version = "0.1.3"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "e47d3a8076e283f3acd27400535992edb3ba4b5bb72f8891ad8fbe7932a7d4b9"
2022-08-01 02:17:59 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-01 02:17:59 +02:00
"either",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "bytestring"
2023-03-14 03:36:22 +01:00
version = "1.3.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
2021-10-06 23:42:44 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "casbin"
2022-02-02 01:44:58 +01:00
version = "2.0.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-02 01:44:58 +01:00
checksum = "e3be2866a3a3174b9d31a11d9f9ef219ab84a444d107981c51bf79d7be221adc"
2020-09-16 02:11:49 +02:00
dependencies = [
"async-trait",
"lazy_static",
"parking_lot 0.11.2",
2020-09-16 02:11:49 +02:00
"regex",
"rhai",
2022-02-02 01:44:58 +01:00
"ritelinked",
"serde",
2020-09-16 02:11:49 +02:00
"thiserror",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "cc"
2023-02-26 22:01:15 +01:00
version = "1.0.79"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2021-10-06 23:42:44 +02:00
dependencies = [
"jobserver",
]
2020-09-16 02:11:49 +02:00
2022-07-10 00:11:36 +02:00
[[package]]
name = "cexpr"
2022-10-26 17:51:27 +02:00
version = "0.6.0"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
2022-07-10 00:11:36 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"nom",
2022-07-10 00:11:36 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-09-16 02:11:49 +02:00
[[package]]
name = "chrono"
2023-03-14 03:36:22 +01:00
version = "0.4.24"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-08-28 19:40:59 +02:00
"iana-time-zone",
2022-08-05 20:43:46 +02:00
"js-sys",
2020-09-16 02:11:49 +02:00
"num-integer",
"num-traits",
"serde",
2022-12-11 16:25:15 +01:00
"time 0.1.45",
2022-08-05 20:43:46 +02:00
"wasm-bindgen",
"winapi 0.3.9",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "chrono-tz"
2023-05-22 13:47:21 +02:00
version = "0.6.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "29c39203181991a7dd4343b8005bd804e7a9a37afb8ac070e43771e8c820bbde"
2020-09-16 02:11:49 +02:00
dependencies = [
"chrono",
2022-01-27 03:58:13 +01:00
"chrono-tz-build",
2023-05-22 13:47:21 +02:00
"phf 0.11.1",
2022-01-27 03:58:13 +01:00
]
[[package]]
name = "chrono-tz-build"
2023-05-22 13:47:21 +02:00
version = "0.0.3"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6f509c3a87b33437b05e2458750a0700e5bdd6956176773e6c7d6dd15a283a0c"
2022-01-27 03:58:13 +01:00
dependencies = [
2020-09-16 02:11:49 +02:00
"parse-zoneinfo",
2023-05-22 13:47:21 +02:00
"phf 0.11.1",
"phf_codegen 0.11.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "chunked_transfer"
2022-12-30 17:48:10 +01:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "cca491388666e04d7248af3f60f0c40cfb0991c72205595d7c396e3510207d1a"
[[package]]
name = "cipher"
2023-03-14 03:36:22 +01:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
2022-10-16 22:20:01 +02:00
"crypto-common",
"inout",
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "clang-sys"
2023-05-22 13:47:21 +02:00
version = "1.6.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
2022-07-10 00:11:36 +02:00
dependencies = [
"glob",
"libc",
"libloading",
]
[[package]]
name = "clap"
2023-05-22 13:47:21 +02:00
version = "4.3.0"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"clap_builder",
2022-02-02 03:02:47 +01:00
"clap_derive",
2022-07-09 21:43:47 +02:00
"once_cell",
2023-05-22 13:47:21 +02:00
]
[[package]]
name = "clap_builder"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990"
dependencies = [
"anstream",
"anstyle",
"bitflags",
"clap_lex",
2022-10-26 17:51:27 +02:00
"strsim",
2022-02-02 03:02:47 +01:00
]
[[package]]
name = "clap_derive"
2023-05-22 13:47:21 +02:00
version = "4.3.0"
2022-02-02 03:02:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b"
2022-02-02 03:02:47 +01:00
dependencies = [
2022-07-10 00:39:21 +02:00
"heck",
2022-02-02 03:02:47 +01:00
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "clap_lex"
2023-05-22 13:47:21 +02:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
2022-12-30 17:23:24 +01:00
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
"bitflags",
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "cmake"
2023-05-22 13:47:21 +02:00
version = "0.1.50"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
2022-07-10 00:11:36 +02:00
dependencies = [
"cc",
]
2022-10-16 22:20:01 +02:00
[[package]]
2023-05-22 13:47:21 +02:00
name = "colorchoice"
version = "1.0.0"
2022-10-16 22:20:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-10-16 22:20:01 +02:00
2021-04-26 13:32:32 +02:00
[[package]]
name = "combine"
version = "3.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680"
dependencies = [
"ascii",
"byteorder",
"either",
"memchr",
"unreachable",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "combine"
2022-08-28 19:40:59 +02:00
version = "4.6.6"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-28 19:40:59 +02:00
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2021-10-07 00:56:44 +02:00
"futures-core",
2020-09-16 02:11:49 +02:00
"memchr",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "concurrent-queue"
2023-05-22 13:47:21 +02:00
version = "2.2.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-03-14 03:36:22 +01:00
"crossbeam-utils 0.8.15",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "config"
2022-12-11 16:25:15 +01:00
version = "0.13.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7"
2020-09-16 02:11:49 +02:00
dependencies = [
"async-trait",
"json5",
2020-09-16 02:11:49 +02:00
"lazy_static",
2022-10-26 17:51:27 +02:00
"nom",
"pathdiff",
"ron",
2020-09-16 02:11:49 +02:00
"rust-ini",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2023-05-22 13:47:21 +02:00
"toml 0.5.11",
2020-09-16 02:11:49 +02:00
"yaml-rust",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "const-random"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e"
dependencies = [
"const-random-macro",
"proc-macro-hack",
]
[[package]]
name = "const-random-macro"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb"
dependencies = [
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
2022-12-11 16:25:15 +01:00
"once_cell",
"proc-macro-hack",
"tiny-keccak",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "const_fn"
2022-01-27 03:58:13 +01:00
version = "0.4.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
2020-09-16 02:11:49 +02:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2023-02-26 22:01:15 +01:00
[[package]]
name = "constant_time_eq"
2023-03-14 03:36:22 +01:00
version = "0.2.5"
2023-02-26 22:01:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b"
2023-02-26 22:01:15 +01:00
2021-10-07 00:56:44 +02:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-16 02:11:49 +02:00
[[package]]
name = "cookie"
2021-10-07 00:56:44 +02:00
version = "0.14.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
2020-09-16 02:11:49 +02:00
dependencies = [
"percent-encoding",
2021-10-07 00:56:44 +02:00
"time 0.2.27",
2022-02-18 02:44:53 +01:00
"version_check",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "cookie"
2022-12-30 17:48:10 +01:00
version = "0.16.2"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2021-10-06 23:42:44 +02:00
dependencies = [
"aes-gcm",
2022-12-30 17:48:10 +01:00
"base64 0.20.0",
"hkdf",
2022-08-01 02:17:59 +02:00
"hmac",
2021-10-06 23:42:44 +02:00
"percent-encoding",
"rand 0.8.5",
2022-10-26 17:51:27 +02:00
"sha2",
"subtle",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
2022-02-18 02:44:53 +01:00
"version_check",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "cookie-auth"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-identity",
2022-10-26 17:51:27 +02:00
"actix-session",
2022-02-18 02:44:53 +01:00
"actix-web",
2023-01-03 15:04:10 +01:00
"actix-web-lab",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-01-03 15:04:10 +01:00
"log",
"rand 0.8.5",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "cookie-session"
version = "1.0.0"
dependencies = [
2022-10-16 20:14:40 +02:00
"actix-session",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-02 16:50:58 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "cookie_store"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3"
dependencies = [
"cookie 0.14.4",
2022-09-11 00:07:55 +02:00
"idna 0.2.3",
"log",
"publicsuffix",
"serde",
"serde_json",
"time 0.2.27",
"url",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "core-foundation"
version = "0.9.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2020-09-16 02:11:49 +02:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2023-05-22 13:47:21 +02:00
version = "0.8.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2020-09-16 02:11:49 +02:00
[[package]]
2021-10-06 23:42:44 +02:00
name = "cpufeatures"
2023-05-22 13:47:21 +02:00
version = "0.2.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
2021-10-06 23:42:44 +02:00
dependencies = [
"libc",
]
2020-09-16 02:11:49 +02:00
[[package]]
2022-10-26 17:51:27 +02:00
name = "crc32c"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e"
dependencies = [
2022-10-26 17:51:27 +02:00
"rustc_version 0.4.0",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "crc32fast"
version = "1.3.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
]
2022-10-26 17:51:27 +02:00
[[package]]
name = "crossbeam"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-channel",
2023-03-14 03:36:22 +01:00
"crossbeam-deque 0.8.3",
"crossbeam-epoch 0.9.14",
2022-12-30 17:23:24 +01:00
"crossbeam-queue 0.3.8",
2023-03-14 03:36:22 +01:00
"crossbeam-utils 0.8.15",
2022-10-26 17:51:27 +02:00
]
[[package]]
name = "crossbeam-channel"
2023-05-22 13:47:21 +02:00
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
dependencies = [
"cfg-if 1.0.0",
2023-03-14 03:36:22 +01:00
"crossbeam-utils 0.8.15",
2022-12-30 17:23:24 +01:00
]
[[package]]
name = "crossbeam-deque"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
dependencies = [
"crossbeam-epoch 0.8.2",
"crossbeam-utils 0.7.2",
"maybe-uninit",
]
2022-10-26 17:51:27 +02:00
[[package]]
name = "crossbeam-deque"
2023-03-14 03:36:22 +01:00
version = "0.8.3"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2022-10-26 17:51:27 +02:00
dependencies = [
"cfg-if 1.0.0",
2023-03-14 03:36:22 +01:00
"crossbeam-epoch 0.9.14",
"crossbeam-utils 0.8.15",
2022-12-30 17:23:24 +01:00
]
[[package]]
name = "crossbeam-epoch"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
dependencies = [
"autocfg",
"cfg-if 0.1.10",
"crossbeam-utils 0.7.2",
"lazy_static",
"maybe-uninit",
"memoffset 0.5.6",
"scopeguard",
2022-10-26 17:51:27 +02:00
]
[[package]]
name = "crossbeam-epoch"
2023-03-14 03:36:22 +01:00
version = "0.9.14"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
2022-10-26 17:51:27 +02:00
dependencies = [
"autocfg",
"cfg-if 1.0.0",
2023-03-14 03:36:22 +01:00
"crossbeam-utils 0.8.15",
"memoffset 0.8.0",
2022-10-26 17:51:27 +02:00
"scopeguard",
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "crossbeam-queue"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
dependencies = [
"cfg-if 0.1.10",
"crossbeam-utils 0.7.2",
"maybe-uninit",
]
[[package]]
name = "crossbeam-queue"
2022-12-11 16:25:15 +01:00
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
dependencies = [
"cfg-if 1.0.0",
2023-03-14 03:36:22 +01:00
"crossbeam-utils 0.8.15",
2022-12-30 17:23:24 +01:00
]
[[package]]
name = "crossbeam-utils"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
dependencies = [
"autocfg",
"cfg-if 0.1.10",
"lazy_static",
2020-09-16 02:11:49 +02:00
]
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
[[package]]
name = "crossbeam-utils"
2023-03-14 03:36:22 +01:00
version = "0.8.15"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
dependencies = [
"cfg-if 1.0.0",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2022-01-27 03:58:13 +01:00
[[package]]
name = "crypto-common"
version = "0.1.6"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-01-27 03:58:13 +01:00
dependencies = [
2022-08-05 20:43:46 +02:00
"generic-array",
2022-10-16 22:20:01 +02:00
"rand_core 0.6.4",
"typenum",
2022-01-27 03:58:13 +01:00
]
[[package]]
name = "csv"
2023-03-14 03:36:22 +01:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad"
dependencies = [
"csv-core",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
[[package]]
name = "ctor"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
dependencies = [
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
]
[[package]]
name = "ctr"
2022-10-16 22:20:01 +02:00
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
dependencies = [
"cipher",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "darling"
version = "0.13.4"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"darling_core 0.13.4",
"darling_macro 0.13.4",
]
[[package]]
name = "darling"
2023-03-14 03:36:22 +01:00
version = "0.14.4"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
2022-10-26 17:51:27 +02:00
dependencies = [
2023-03-14 03:36:22 +01:00
"darling_core 0.14.4",
"darling_macro 0.14.4",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "darling_core"
version = "0.13.4"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
2021-10-06 23:42:44 +02:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2022-10-26 17:51:27 +02:00
"strsim",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-10-26 17:51:27 +02:00
]
[[package]]
name = "darling_core"
2023-03-14 03:36:22 +01:00
version = "0.14.4"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
2022-10-26 17:51:27 +02:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "darling_macro"
version = "0.13.4"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"darling_core 0.13.4",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-10-26 17:51:27 +02:00
]
[[package]]
name = "darling_macro"
2023-03-14 03:36:22 +01:00
version = "0.14.4"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
2022-10-26 17:51:27 +02:00
dependencies = [
2023-03-14 03:36:22 +01:00
"darling_core 0.14.4",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "data-encoding"
2023-05-22 13:47:21 +02:00
version = "2.4.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
2021-10-06 23:42:44 +02:00
2022-10-16 20:14:40 +02:00
[[package]]
name = "db-redis"
version = "1.0.0"
dependencies = [
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-10-16 20:14:40 +02:00
"futures-util",
"log",
2023-02-26 22:01:15 +01:00
"redis 0.22.3",
2022-10-16 20:14:40 +02:00
"serde",
]
2023-01-07 16:23:31 +01:00
[[package]]
name = "db-sqlite"
version = "1.0.0"
dependencies = [
"actix-web",
"env_logger",
"futures-util",
"log",
"r2d2",
"r2d2_sqlite",
"rusqlite",
"serde",
"serde_json",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "deadpool"
version = "0.9.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
2020-09-16 02:11:49 +02:00
dependencies = [
"async-trait",
"deadpool-runtime",
2020-09-16 02:11:49 +02:00
"num_cpus",
"retain_mut",
"serde",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "deadpool-postgres"
2023-02-26 22:01:15 +01:00
version = "0.10.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "836a24a9d49deefe610b8b60c767a7412e9a931d79a89415cd2d2d71630ca8d7"
2020-09-16 02:11:49 +02:00
dependencies = [
"deadpool",
"log",
"serde",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
"tokio-postgres",
]
[[package]]
name = "deadpool-runtime"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
dependencies = [
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "derive_more"
2022-01-27 03:58:13 +01:00
version = "0.99.17"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"convert_case",
"proc-macro2",
"quote",
2022-01-27 03:58:13 +01:00
"rustc_version 0.4.0",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "derive_utils"
2021-10-07 00:56:44 +02:00
version = "0.11.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "532b4c15dccee12c7044f1fcad956e98410860b22231e44a3b827464797ca7bf"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "derive_utils"
2023-05-22 13:47:21 +02:00
version = "0.13.0"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "dff8f6a793f528719e1ad4425a52a213ac1214ac7158c5fb97a7f50a64bfc96d"
2022-12-11 16:25:15 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2022-12-11 16:25:15 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "deunicode"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "850878694b7933ca4c9569d30a34b55031b9b139ee1fc7b94a527c4ef960d690"
[[package]]
name = "diesel"
2023-05-22 13:47:21 +02:00
version = "2.0.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "72eb77396836a4505da85bae0712fa324b74acfe1876d7c2f7e694ef3d0ee373"
2020-09-16 02:11:49 +02:00
dependencies = [
"bitflags",
"byteorder",
"chrono",
"diesel_derives",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-09-11 00:33:09 +02:00
"libsqlite3-sys",
2020-09-16 02:11:49 +02:00
"pq-sys",
"r2d2",
2023-05-22 13:47:21 +02:00
"uuid 1.3.3",
2022-09-11 00:33:09 +02:00
]
[[package]]
name = "diesel-example"
version = "1.0.0"
dependencies = [
"actix-web",
"diesel",
"dotenv",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-09-11 00:33:09 +02:00
"log",
"serde",
"serde_json",
2023-05-22 13:47:21 +02:00
"uuid 1.3.3",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "diesel_derives"
2023-03-14 03:36:22 +01:00
version = "2.0.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "0ad74fdcf086be3d4fdd142f67937678fe60ed431c3b2f08599e7687269410c4"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-09-11 00:33:09 +02:00
"proc-macro-error",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "diff"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2022-01-27 03:58:13 +01:00
[[package]]
name = "digest"
2023-05-22 13:47:21 +02:00
version = "0.10.7"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-01-27 03:58:13 +01:00
dependencies = [
2022-10-26 17:51:27 +02:00
"block-buffer",
2022-01-27 03:58:13 +01:00
"crypto-common",
"subtle",
2020-09-16 02:11:49 +02:00
]
2022-08-05 20:43:46 +02:00
[[package]]
2022-10-26 17:51:27 +02:00
name = "discard"
version = "1.0.4"
2022-08-05 20:43:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2022-08-05 20:43:46 +02:00
[[package]]
2022-10-26 17:51:27 +02:00
name = "displaydoc"
2023-05-22 13:47:21 +02:00
version = "0.2.4"
2022-08-05 20:43:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
2022-08-05 20:43:46 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2022-08-05 20:43:46 +02:00
]
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2020-09-16 02:11:49 +02:00
[[package]]
name = "docker_sample"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-01-27 03:58:13 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2022-09-11 00:07:55 +02:00
[[package]]
name = "dtoa"
2023-03-14 03:36:22 +01:00
version = "1.0.6"
2022-09-11 00:07:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169"
2022-09-11 00:07:55 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "either"
2023-02-26 22:01:15 +01:00
version = "1.8.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2020-09-16 02:11:49 +02:00
[[package]]
name = "encoding_rs"
2023-02-26 22:01:15 +01:00
version = "0.8.32"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "enum-as-inner"
version = "0.4.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-07-10 00:39:21 +02:00
"heck",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
2021-10-07 00:12:42 +02:00
[[package]]
name = "env_logger"
2022-12-11 16:25:57 +01:00
version = "0.10.0"
2021-10-07 00:12:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:57 +01:00
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
2021-10-07 00:12:42 +02:00
dependencies = [
"humantime",
2022-12-11 16:25:57 +01:00
"is-terminal",
2021-10-07 00:12:42 +02:00
"log",
"regex",
"termcolor",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "errno"
2023-05-22 13:47:21 +02:00
version = "0.3.1"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2022-12-11 16:25:15 +01:00
dependencies = [
"errno-dragonfly",
"libc",
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "error_handling"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2020-09-16 02:11:49 +02:00
"derive_more",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:41:32 +01:00
"log",
"rand 0.8.5",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "event-listener"
2022-08-05 20:43:46 +02:00
version = "2.5.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-05 20:43:46 +02:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2020-09-16 02:11:49 +02:00
[[package]]
name = "extend"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f47da3a72ec598d9c8937a7ebca8962a5c7a1f28444e38c2b33c771ba3f55f05"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2022-02-17 22:29:55 +01:00
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
"ascii_utils",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "fastrand"
2023-02-26 22:01:15 +01:00
version = "1.9.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2020-09-16 02:11:49 +02:00
2022-07-10 00:39:21 +02:00
[[package]]
name = "filetime"
2023-05-22 13:47:21 +02:00
version = "0.2.21"
2022-07-10 00:39:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
2022-07-10 00:39:21 +02:00
dependencies = [
"cfg-if 1.0.0",
"libc",
2022-12-30 17:23:24 +01:00
"redox_syscall 0.2.16",
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2022-07-10 00:39:21 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "flate2"
2023-05-22 13:47:21 +02:00
version = "1.0.26"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2020-09-16 02:11:49 +02:00
dependencies = [
"crc32fast",
"libz-sys",
"miniz_oxide",
]
[[package]]
name = "fluent"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7"
dependencies = [
"fluent-bundle",
"unic-langid",
]
[[package]]
name = "fluent-bundle"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd"
dependencies = [
"fluent-langneg",
"fluent-syntax",
"intl-memoizer",
"intl_pluralrules",
"rustc-hash",
"self_cell",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
"unic-langid",
]
[[package]]
name = "fluent-langneg"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94"
dependencies = [
"unic-langid",
]
[[package]]
name = "fluent-syntax"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78"
dependencies = [
"thiserror",
]
[[package]]
name = "fluent-template-macros"
2022-08-28 19:43:05 +02:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dec7592cd1f45c1afe9084ce59c62a3a7c266c125c4c2ec97e95b0563c4aa914"
dependencies = [
"flume",
"ignore",
"once_cell",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
"unic-langid",
]
[[package]]
name = "fluent-templates"
2022-08-28 19:43:05 +02:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c3ef2c2152757885365abce32ddf682746062f1b6b3c0824a29fbed6ee4d080"
dependencies = [
"arc-swap",
"fluent",
"fluent-bundle",
"fluent-langneg",
"fluent-syntax",
"fluent-template-macros",
"flume",
"handlebars",
"heck",
"ignore",
"intl-memoizer",
"lazy_static",
"log",
"once_cell",
"serde_json",
"snafu",
"unic-langid",
]
2022-02-06 09:19:35 +01:00
[[package]]
name = "flume"
2022-08-05 20:43:46 +02:00
version = "0.10.14"
2022-02-06 09:19:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-05 20:43:46 +02:00
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
2022-02-06 09:19:35 +01:00
dependencies = [
2023-05-22 13:47:21 +02:00
"spin 0.9.8",
2022-02-06 09:19:35 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[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"
[[package]]
name = "form-example"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
"serde",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
]
[[package]]
name = "form_urlencoded"
2022-09-11 00:07:55 +02:00
version = "1.1.0"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
dependencies = [
"percent-encoding",
2020-09-16 02:11:49 +02:00
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "frunk"
2022-12-11 16:25:15 +01:00
version = "0.4.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "a89c703bf50009f383a0873845357cc400a95fc535f836feddfe015d7df6e1e0"
2022-07-10 00:11:36 +02:00
dependencies = [
"frunk_core",
"frunk_derives",
"frunk_proc_macros",
]
[[package]]
name = "frunk_core"
2022-12-11 16:25:15 +01:00
version = "0.4.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "2a446d01a558301dca28ef43222864a9fa2bd9a2e71370f769d5d5d5ec9f3537"
2022-07-10 00:11:36 +02:00
[[package]]
name = "frunk_derives"
2022-12-11 16:25:15 +01:00
version = "0.4.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "b83164912bb4c97cfe0772913c7af7387ee2e00cb6d4636fb65a35b3d0c8f173"
2022-07-10 00:11:36 +02:00
dependencies = [
"frunk_proc_macro_helpers",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-07-10 00:11:36 +02:00
]
[[package]]
name = "frunk_proc_macro_helpers"
2022-12-11 16:25:15 +01:00
version = "0.1.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "015425591bbeb0f5b8a75593340f1789af428e9f887a4f1e36c0c471f067ef50"
2022-07-10 00:11:36 +02:00
dependencies = [
"frunk_core",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-07-10 00:11:36 +02:00
]
[[package]]
name = "frunk_proc_macros"
2022-12-11 16:25:15 +01:00
version = "0.1.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "ea01524f285deab48affffb342b97f186e657b119c3f1821ac531780e0fbfae0"
2022-07-10 00:11:36 +02:00
dependencies = [
"frunk_core",
"frunk_proc_macros_impl",
"proc-macro-hack",
]
[[package]]
name = "frunk_proc_macros_impl"
2022-12-11 16:25:15 +01:00
version = "0.1.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "0a802d974cc18ee7fe1a7868fc9ce31086294fd96ba62f8da64ecb44e92a2653"
2022-07-10 00:11:36 +02:00
dependencies = [
"frunk_core",
"frunk_proc_macro_helpers",
"proc-macro-hack",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-07-10 00:11:36 +02:00
]
2022-10-16 22:49:01 +02:00
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
"libc",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2022-07-10 00:11:36 +02:00
[[package]]
name = "funty"
2022-12-11 16:25:15 +01:00
version = "2.0.0"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
2022-07-10 00:11:36 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "futf"
version = "0.1.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
2020-09-16 02:11:49 +02:00
dependencies = [
"mac",
"new_debug_unreachable",
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "futures"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
2020-09-16 02:11:49 +02:00
[[package]]
name = "futures"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2020-09-16 02:11:49 +02:00
dependencies = [
"futures-channel",
"futures-core",
2022-10-16 20:14:40 +02:00
"futures-executor",
2020-09-16 02:11:49 +02:00
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2020-09-16 02:11:49 +02:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2020-09-16 02:11:49 +02:00
2021-04-26 13:32:32 +02:00
[[package]]
name = "futures-enum"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3422d14de7903a52e9dbc10ae05a7e14445ec61890100e098754e120b2bd7b1e"
dependencies = [
2022-12-11 16:25:15 +01:00
"derive_utils 0.11.2",
2021-04-26 13:32:32 +02:00
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2021-04-26 13:32:32 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "futures-executor"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2020-09-16 02:11:49 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2020-09-16 02:11:49 +02:00
[[package]]
name = "futures-macro"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "futures-sink"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2020-09-16 02:11:49 +02:00
[[package]]
name = "futures-task"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2020-09-16 02:11:49 +02:00
[[package]]
name = "futures-util"
2023-05-22 13:47:21 +02:00
version = "0.3.28"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"futures-channel",
2020-09-16 02:11:49 +02:00
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite 0.2.9",
2020-09-16 02:11:49 +02:00
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2023-05-22 13:47:21 +02:00
version = "0.14.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2020-09-16 02:11:49 +02:00
dependencies = [
"typenum",
2022-02-18 02:44:53 +01:00
"version_check",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "getrandom"
2021-10-07 00:56:44 +02:00
version = "0.1.16"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2023-05-22 13:47:21 +02:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [
"cfg-if 1.0.0",
"libc",
2022-07-09 21:43:47 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
]
[[package]]
name = "ghash"
2022-10-16 22:20:01 +02:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
dependencies = [
2022-08-05 20:43:46 +02:00
"opaque-debug",
"polyval",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-07-10 00:11:36 +02:00
name = "glob"
2023-01-07 16:23:31 +01:00
version = "0.3.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2020-09-16 02:11:49 +02:00
[[package]]
name = "globset"
2023-01-07 16:23:31 +01:00
version = "0.4.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"aho-corasick 0.7.20",
2023-02-26 22:01:15 +01:00
"bstr",
2020-09-16 02:11:49 +02:00
"fnv",
"log",
"regex",
]
[[package]]
name = "globwalk"
version = "0.8.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
2020-09-16 02:11:49 +02:00
dependencies = [
"bitflags",
"ignore",
"walkdir",
]
2021-04-26 13:32:32 +02:00
[[package]]
name = "graphql-parser"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1abd4ce5247dfc04a03ccde70f87a048458c9356c7e41d21ad8c407b3dde6f2"
dependencies = [
"combine 3.8.1",
"thiserror",
]
2022-03-05 15:28:43 +01:00
[[package]]
name = "guards"
version = "1.0.0"
dependencies = [
"actix-web",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "h2"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
version = "0.2.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
2020-09-16 02:11:49 +02:00
dependencies = [
"bytes 0.5.6",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-10-07 00:56:44 +02:00
"tokio 0.2.25",
2021-10-06 23:42:44 +02:00
"tokio-util 0.3.1",
2020-09-16 02:11:49 +02:00
"tracing",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"tracing-futures",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "h2"
2023-05-22 13:47:21 +02:00
version = "0.3.19"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782"
2021-10-06 23:42:44 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2021-10-06 23:42:44 +02:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2021-10-06 23:42:44 +02:00
"tracing",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "handlebars"
2023-05-22 13:47:21 +02:00
version = "4.3.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "83c3372087601b532857d332f5957cbae686da52bb7810bf038c3e3c3cc2fa0d"
2020-09-16 02:11:49 +02:00
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
"thiserror",
2020-09-16 02:11:49 +02:00
"walkdir",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
dependencies = [
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
]
2023-02-26 22:01:15 +01:00
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
dependencies = [
"ahash 0.8.3",
]
[[package]]
name = "hashlink"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf"
dependencies = [
"hashbrown 0.11.2",
]
2021-10-06 23:42:44 +02:00
2022-02-02 03:02:47 +01:00
[[package]]
name = "heck"
2023-02-26 22:01:15 +01:00
version = "0.4.1"
2022-02-02 03:02:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-02-02 03:02:47 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "hello-world"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2023-02-26 22:01:15 +01:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2020-09-16 02:11:49 +02:00
[[package]]
name = "hex"
2021-10-07 00:56:44 +02:00
version = "0.4.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-09-16 02:11:49 +02:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
2022-08-01 02:17:59 +02:00
"hmac",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2022-10-26 17:51:27 +02:00
"digest",
]
2022-07-10 00:39:21 +02:00
[[package]]
name = "home"
2023-05-22 13:47:21 +02:00
version = "0.5.5"
2022-07-10 00:39:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
2022-07-10 00:39:21 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2022-07-10 00:39:21 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi 0.3.9",
]
[[package]]
name = "http"
2023-02-26 22:01:15 +01:00
version = "0.2.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2020-09-16 02:11:49 +02:00
"fnv",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "http-body"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
dependencies = [
"bytes 0.5.6",
"http",
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "http-body"
version = "0.4.5"
2022-01-31 03:45:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2022-01-31 03:45:53 +01:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-01-31 03:45:53 +01:00
"http",
"pin-project-lite 0.2.9",
2022-01-31 03:45:53 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "http-proxy"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
"awc",
2022-10-26 17:51:27 +02:00
"clap",
"env_logger",
2023-01-01 21:22:50 +01:00
"futures-util",
2022-02-02 03:02:47 +01:00
"log",
2023-05-22 13:47:21 +02:00
"reqwest 0.11.18",
"tokio 1.28.1",
2023-01-01 21:22:50 +01:00
"tokio-stream",
2020-09-16 02:11:49 +02:00
"url",
]
2022-01-29 17:06:32 +01:00
[[package]]
name = "http-range"
version = "0.1.5"
2022-01-29 17:06:32 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
2022-01-29 17:06:32 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "httparse"
2022-09-11 00:07:55 +02:00
version = "1.8.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2020-09-16 02:11:49 +02:00
[[package]]
name = "httpdate"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
2022-01-27 03:58:13 +01:00
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2023-05-22 13:47:21 +02:00
[[package]]
name = "humansize"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02296996cb8796d7c6e3bc2d9211b7802812d36999a51bb754123ead7d37d026"
2020-09-16 02:11:49 +02:00
[[package]]
name = "humansize"
2023-03-14 04:11:49 +01:00
version = "2.1.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 04:11:49 +01:00
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
dependencies = [
"libm",
]
2020-09-16 02:11:49 +02:00
2020-10-20 00:36:53 +02:00
[[package]]
name = "humantime"
2021-10-07 00:56:44 +02:00
version = "2.1.0"
2020-10-20 00:36:53 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2020-10-20 00:36:53 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "hyper"
2021-10-07 00:56:44 +02:00
version = "0.13.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb"
2020-09-16 02:11:49 +02:00
dependencies = [
"bytes 0.5.6",
"futures-channel",
"futures-core",
"futures-util",
2021-10-06 23:42:44 +02:00
"h2 0.2.7",
2020-09-16 02:11:49 +02:00
"http",
2022-01-31 03:45:53 +01:00
"http-body 0.3.1",
2020-09-16 02:11:49 +02:00
"httparse",
2022-01-27 03:58:13 +01:00
"httpdate 0.3.2",
"itoa 0.4.8",
2022-02-18 02:44:53 +01:00
"pin-project",
2021-10-07 00:56:44 +02:00
"socket2 0.3.19",
"tokio 0.2.25",
2020-09-16 02:11:49 +02:00
"tower-service",
"tracing",
"want",
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "hyper"
2023-05-22 13:47:21 +02:00
version = "0.14.26"
2022-01-31 03:45:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
2022-01-31 03:45:53 +01:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-01-31 03:45:53 +01:00
"futures-channel",
"futures-core",
"futures-util",
2023-05-22 13:47:21 +02:00
"h2 0.3.19",
2022-01-31 03:45:53 +01:00
"http",
"http-body 0.4.5",
2022-01-31 03:45:53 +01:00
"httparse",
"httpdate 1.0.2",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
"pin-project-lite 0.2.9",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-01-31 03:45:53 +01:00
"tower-service",
"tracing",
"want",
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "hyper-rustls"
2022-12-11 16:31:32 +01:00
version = "0.23.2"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:31:32 +01:00
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
2022-08-01 02:17:59 +02:00
dependencies = [
2022-12-11 16:31:32 +01:00
"http",
2023-05-22 13:47:21 +02:00
"hyper 0.14.26",
2022-08-01 02:17:59 +02:00
"log",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2022-08-01 02:17:59 +02:00
"rustls-native-certs",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-12-11 16:31:32 +01:00
"tokio-rustls",
2022-08-01 02:17:59 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "hyper-tls"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
dependencies = [
"bytes 0.5.6",
2022-01-31 03:45:53 +01:00
"hyper 0.13.10",
2020-09-16 02:11:49 +02:00
"native-tls",
2021-10-07 00:56:44 +02:00
"tokio 0.2.25",
2020-09-16 02:11:49 +02:00
"tokio-tls",
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2023-05-22 13:47:21 +02:00
"hyper 0.14.26",
2022-01-31 03:45:53 +01:00
"native-tls",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-01-31 03:45:53 +01:00
"tokio-native-tls",
]
2022-08-28 19:40:59 +02:00
[[package]]
name = "iana-time-zone"
2023-05-22 13:47:21 +02:00
version = "0.1.56"
2022-08-28 19:40:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
2022-08-28 19:40:59 +02:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-10-16 22:20:01 +02:00
"iana-time-zone-haiku",
2022-08-28 19:40:59 +02:00
"js-sys",
"wasm-bindgen",
2023-05-22 13:47:21 +02:00
"windows",
2022-08-28 19:40:59 +02:00
]
2022-10-16 22:20:01 +02:00
[[package]]
name = "iana-time-zone-haiku"
2023-05-22 13:47:21 +02:00
version = "0.1.2"
2022-10-16 22:20:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-10-16 22:20:01 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"cc",
2022-10-16 22:20:01 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
2021-10-07 00:56:44 +02:00
version = "0.2.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-09-16 02:11:49 +02:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2022-09-11 00:07:55 +02:00
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "if_chain"
2021-10-07 00:56:44 +02:00
version = "1.0.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
2020-09-16 02:11:49 +02:00
[[package]]
name = "ignore"
2023-02-26 22:01:15 +01:00
version = "0.4.20"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
2020-09-16 02:11:49 +02:00
dependencies = [
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "impl-more"
2023-03-14 03:36:22 +01:00
version = "0.1.5"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "2697f323912b5b942f1ff43625c34895edcf3def901c11214ad92d41fa5c57da"
2022-12-11 16:25:15 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "indexmap"
2023-05-22 13:47:21 +02:00
version = "1.9.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2020-09-16 02:11:49 +02:00
dependencies = [
"autocfg",
"hashbrown 0.12.3",
"serde",
2020-09-16 02:11:49 +02:00
]
2022-10-16 22:49:01 +02:00
[[package]]
name = "inotify"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
dependencies = [
"bitflags",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
"libc",
]
2022-10-16 22:20:01 +02:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "instant"
2022-01-27 03:58:13 +01:00
version = "0.1.12"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"cfg-if 1.0.0",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "intl-memoizer"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f"
dependencies = [
"type-map",
"unic-langid",
]
[[package]]
name = "intl_pluralrules"
2022-10-26 17:51:27 +02:00
version = "7.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
dependencies = [
"unic-langid",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "io-enum"
2023-05-22 13:47:21 +02:00
version = "1.1.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "01c662c349c9c9f542e7bfd9134143beb27da4b20dfbc3b3ef5b2a5b507dafbd"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"derive_utils 0.13.0",
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "io-lifetimes"
2023-05-22 13:47:21 +02:00
version = "1.0.10"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
2022-12-11 16:25:15 +01:00
dependencies = [
2023-05-22 13:47:21 +02:00
"hermit-abi 0.3.1",
2022-12-11 16:25:15 +01:00
"libc",
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2022-12-11 16:25:15 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "ipconfig"
2022-12-11 16:25:15 +01:00
version = "0.3.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2020-09-16 02:11:49 +02:00
"widestring",
"winapi 0.3.9",
2022-12-11 16:25:15 +01:00
"winreg 0.10.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "ipnet"
2023-05-22 13:47:21 +02:00
version = "2.7.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2022-12-11 16:25:15 +01:00
[[package]]
name = "is-terminal"
2023-05-22 13:47:21 +02:00
version = "0.4.7"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2022-12-11 16:25:15 +01:00
dependencies = [
2023-02-26 22:01:15 +01:00
"hermit-abi 0.3.1",
2022-12-11 16:25:15 +01:00
"io-lifetimes",
"rustix",
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2022-12-11 16:25:15 +01:00
]
2020-09-16 02:11:49 +02:00
2021-10-07 00:56:44 +02:00
[[package]]
name = "itertools"
2022-10-16 22:20:01 +02:00
version = "0.10.5"
2021-10-07 00:56:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-10-07 00:56:44 +02:00
dependencies = [
"either",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "itoa"
2021-10-07 00:56:44 +02:00
version = "0.4.8"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2020-09-16 02:11:49 +02:00
2022-01-27 03:58:13 +01:00
[[package]]
name = "itoa"
2023-03-14 03:36:22 +01:00
version = "1.0.6"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2022-01-27 03:58:13 +01:00
2022-07-10 00:39:21 +02:00
[[package]]
name = "itoap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9028f49264629065d057f340a86acb84867925865f73bbf8d47b4d149a7e88b8"
2021-10-06 23:42:44 +02:00
[[package]]
name = "jobserver"
2023-03-14 03:36:22 +01:00
version = "0.1.26"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2021-10-06 23:42:44 +02:00
dependencies = [
"libc",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "js-sys"
2023-05-22 13:47:21 +02:00
version = "0.3.63"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790"
2020-09-16 02:11:49 +02:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "json"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
[[package]]
name = "json-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:15:16 +01:00
"futures-util",
2020-09-16 02:11:49 +02:00
"json",
2022-03-06 01:41:32 +01:00
"log",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
2022-02-02 02:51:25 +01:00
[[package]]
name = "json-validation"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
"awc",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:15:16 +01:00
"futures-util",
2022-02-02 02:51:25 +01:00
"log",
"serde",
2022-02-02 02:51:25 +01:00
"serde_json",
"validator",
]
[[package]]
name = "json5"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
dependencies = [
"pest",
"pest_derive",
"serde",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "json_decode_error"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:41:32 +01:00
"log",
"serde",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "json_error"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:41:32 +01:00
"log",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
[[package]]
name = "jsonrpc-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-10-26 17:51:27 +02:00
"env_logger",
"futures-util",
2020-09-16 02:11:49 +02:00
"log",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
[[package]]
name = "juniper"
2023-02-26 22:01:15 +01:00
version = "0.15.11"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "52adf17d43d0b526eed31fac15d9312941c5c2558ffbfb105811690b96d6e2f1"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-04-26 13:32:32 +02:00
"async-trait",
2022-01-27 03:58:13 +01:00
"bson 1.2.4",
2020-09-16 02:11:49 +02:00
"chrono",
"fnv",
2023-05-22 13:47:21 +02:00
"futures 0.3.28",
2021-04-26 13:32:32 +02:00
"futures-enum",
"graphql-parser",
2020-09-16 02:11:49 +02:00
"indexmap",
"juniper_codegen",
"serde",
2023-02-26 22:01:15 +01:00
"smartstring",
2022-07-10 00:11:36 +02:00
"static_assertions",
2020-09-16 02:11:49 +02:00
"url",
2022-07-10 00:39:21 +02:00
"uuid 0.8.2",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "juniper-advanced"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-17 21:59:04 +01:00
"actix-cors",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
2020-09-16 02:11:49 +02:00
"dotenv",
2022-10-26 17:51:27 +02:00
"env_logger",
2020-09-16 02:11:49 +02:00
"juniper",
"log",
"mysql",
"r2d2",
"r2d2_mysql",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2023-05-22 13:47:21 +02:00
"uuid 1.3.3",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "juniper-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-17 21:59:04 +01:00
"actix-cors",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2020-09-16 02:11:49 +02:00
"juniper",
2022-02-17 21:59:04 +01:00
"log",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
[[package]]
name = "juniper_codegen"
version = "0.15.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aee97671061ad50301ba077d054d295e01d31a1868fbd07902db651f987e71db"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-04-26 13:32:32 +02:00
"proc-macro-error",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2022-10-16 22:49:01 +02:00
[[package]]
name = "kqueue"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98"
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
dependencies = [
"bitflags",
"libc",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2020-09-16 02:11:49 +02:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-07-10 00:11:36 +02:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2020-09-16 02:11:49 +02:00
[[package]]
name = "lexical"
2022-10-26 17:51:27 +02:00
version = "6.1.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
2020-09-16 02:11:49 +02:00
dependencies = [
"lexical-core",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "lexical-core"
2022-10-26 17:51:27 +02:00
version = "0.8.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"lexical-parse-float",
"lexical-parse-integer",
"lexical-util",
"lexical-write-float",
"lexical-write-integer",
]
[[package]]
name = "lexical-parse-float"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
dependencies = [
"lexical-parse-integer",
"lexical-util",
"static_assertions",
]
[[package]]
name = "lexical-parse-integer"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
dependencies = [
"lexical-util",
"static_assertions",
]
[[package]]
name = "lexical-util"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
dependencies = [
"static_assertions",
]
[[package]]
name = "lexical-write-float"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
dependencies = [
"lexical-util",
"lexical-write-integer",
"static_assertions",
]
[[package]]
name = "lexical-write-integer"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
dependencies = [
"lexical-util",
2022-07-10 00:11:36 +02:00
"static_assertions",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "libc"
2023-05-22 13:47:21 +02:00
version = "0.2.144"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
2020-09-16 02:11:49 +02:00
2022-07-10 00:11:36 +02:00
[[package]]
name = "libloading"
2022-12-11 16:25:15 +01:00
version = "0.7.4"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
2022-07-10 00:11:36 +02:00
dependencies = [
"cfg-if 1.0.0",
"winapi 0.3.9",
]
2023-03-14 04:11:49 +01:00
[[package]]
name = "libm"
2023-05-22 13:47:21 +02:00
version = "0.2.7"
2023-03-14 04:11:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
2023-03-14 04:11:49 +01:00
2022-02-06 09:19:35 +01:00
[[package]]
name = "libsqlite3-sys"
2022-07-09 23:54:51 +02:00
version = "0.24.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 23:54:51 +02:00
checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
2020-09-16 02:11:49 +02:00
dependencies = [
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
2023-05-22 13:47:21 +02:00
version = "1.1.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
2020-09-16 02:11:49 +02:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "linked-hash-map"
2022-07-09 21:43:47 +02:00
version = "0.5.6"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 21:43:47 +02:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2020-09-16 02:11:49 +02:00
2022-12-11 16:25:15 +01:00
[[package]]
name = "linux-raw-sys"
2023-05-22 13:47:21 +02:00
version = "0.3.8"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2022-12-11 16:25:15 +01:00
2021-10-06 23:42:44 +02:00
[[package]]
name = "local-channel"
version = "0.1.3"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-10-06 23:42:44 +02:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.3"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2021-10-06 23:42:44 +02:00
2022-12-30 17:23:24 +01:00
[[package]]
name = "lock_api"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
dependencies = [
"scopeguard",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "lock_api"
2022-10-16 22:20:01 +02:00
version = "0.4.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2020-09-16 02:11:49 +02:00
dependencies = [
"autocfg",
2020-09-16 02:11:49 +02:00
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "lru"
2022-12-11 16:25:15 +01:00
version = "0.8.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909"
2022-07-10 00:11:36 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"hashbrown 0.12.3",
2022-07-10 00:11:36 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
dependencies = [
"linked-hash-map",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
[[package]]
name = "markup5ever"
2022-09-11 00:07:55 +02:00
version = "0.11.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
2020-09-16 02:11:49 +02:00
dependencies = [
"log",
2022-09-11 00:07:55 +02:00
"phf 0.10.1",
2023-05-22 13:47:21 +02:00
"phf_codegen 0.10.0",
2020-09-16 02:11:49 +02:00
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matches"
2023-02-26 22:01:15 +01:00
version = "0.1.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
2020-09-16 02:11:49 +02:00
2022-12-30 17:23:24 +01:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2020-09-16 02:11:49 +02:00
[[package]]
name = "md-5"
2022-10-16 22:20:01 +02:00
version = "0.10.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
dependencies = [
2022-10-26 17:51:27 +02:00
"digest",
]
2020-09-16 02:11:49 +02:00
2022-12-11 16:25:15 +01:00
[[package]]
name = "mediatype"
2023-02-26 22:01:15 +01:00
version = "0.19.13"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "fea6e62614ab2fc0faa58bb15102a0382d368f896a9fa4776592589ab55c4de7"
2022-12-11 16:25:15 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "memchr"
version = "2.5.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2020-09-16 02:11:49 +02:00
2022-10-16 22:20:01 +02:00
[[package]]
name = "memo-map"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aec276c09560ce4447087aaefc19eb0c18d97e31bd05ebac38881c4723400c40"
2022-12-30 17:23:24 +01:00
[[package]]
name = "memoffset"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
dependencies = [
"autocfg",
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "memoffset"
2023-03-14 03:36:22 +01:00
version = "0.8.0"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
2022-07-10 00:11:36 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "middleware-encrypted-payloads"
version = "1.0.0"
dependencies = [
"actix-http",
"actix-web",
"actix-web-lab",
"aes-gcm-siv",
2023-05-22 13:47:21 +02:00
"base64 0.21.1",
"env_logger",
"futures-util",
"log",
"pin-project",
"serde",
"serde_json",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "middleware-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-http",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-12-17 23:10:51 +01:00
"actix-web-lab",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-22 13:12:17 +01:00
"futures-util",
"log",
2022-02-18 02:44:53 +01:00
"pin-project",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "middleware-ext-mut"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
"log",
]
[[package]]
name = "middleware-http-to-https"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2022-02-22 13:12:17 +01:00
"futures-util",
"log",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2023-03-14 03:36:22 +01:00
"rustls-pemfile",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "mime"
2023-05-22 13:47:21 +02:00
version = "0.3.17"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2020-09-16 02:11:49 +02:00
[[package]]
name = "mime_guess"
version = "2.0.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
2020-09-16 02:11:49 +02:00
dependencies = [
"mime",
"unicase",
]
2022-10-16 22:20:01 +02:00
[[package]]
name = "minijinja"
2023-05-22 13:47:21 +02:00
version = "0.30.7"
2022-10-16 22:20:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2819be6b8bd3236f0fdbf86b1ff2d1f42ef8ef939eed74f6bc3ecf2e6344cd96"
2022-10-16 22:20:01 +02:00
dependencies = [
"memo-map",
"self_cell",
"serde",
]
2022-10-16 22:49:01 +02:00
[[package]]
name = "minijinja-autoreload"
2023-05-22 13:47:21 +02:00
version = "0.30.7"
2022-10-16 22:49:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "be41d48530b2dbe0e5e94dc2921aafb076a0cad4fc72d64a8f75806d73b0ae45"
2022-10-16 22:49:01 +02:00
dependencies = [
"minijinja",
"notify",
]
2021-10-07 00:56:44 +02:00
[[package]]
name = "minimal-lexical"
2022-01-27 03:58:13 +01:00
version = "0.2.1"
2021-10-07 00:56:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-10-07 00:56:44 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "miniz_oxide"
2023-05-22 13:47:21 +02:00
version = "0.7.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2020-09-16 02:11:49 +02:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2021-10-07 00:56:44 +02:00
version = "0.6.23"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2020-09-16 02:11:49 +02:00
dependencies = [
"cfg-if 0.1.10",
2020-09-16 02:11:49 +02:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
2020-09-16 02:11:49 +02:00
"net2",
"slab",
"winapi 0.2.8",
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "mio"
2023-02-26 22:01:15 +01:00
version = "0.8.6"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2021-10-06 23:42:44 +02:00
dependencies = [
"libc",
"log",
2022-03-15 18:32:27 +01:00
"wasi 0.11.0+wasi-snapshot-preview1",
2023-02-26 22:01:15 +01:00
"windows-sys 0.45.0",
2021-10-06 23:42:44 +02:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "mio-uds"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
dependencies = [
"iovec",
"libc",
"mio 0.6.23",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "miow"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
version = "0.2.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2020-09-16 02:11:49 +02:00
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "mongodb"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2023-05-22 13:47:21 +02:00
"mongodb 2.5.0",
"serde",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "mongodb"
2023-05-22 13:47:21 +02:00
version = "2.5.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "ebe15399de63ad4294c80069967736cbb87ebe467a8cd0629df9cab88a6fbde6"
2021-10-06 23:42:44 +02:00
dependencies = [
"async-trait",
"base64 0.13.1",
2021-10-06 23:42:44 +02:00
"bitflags",
2023-05-22 13:47:21 +02:00
"bson 2.6.1",
2021-10-06 23:42:44 +02:00
"chrono",
"derivative",
2023-03-14 03:36:22 +01:00
"derive_more",
2021-10-06 23:42:44 +02:00
"futures-core",
"futures-executor",
2023-03-14 03:36:22 +01:00
"futures-io",
2021-10-06 23:42:44 +02:00
"futures-util",
"hex",
2022-08-01 02:17:59 +02:00
"hmac",
2021-10-06 23:42:44 +02:00
"lazy_static",
2022-08-01 02:17:59 +02:00
"md-5",
2021-10-06 23:42:44 +02:00
"pbkdf2",
"percent-encoding",
"rand 0.8.5",
"rustc_version_runtime",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2023-03-14 03:36:22 +01:00
"rustls-pemfile",
"serde",
2021-10-06 23:42:44 +02:00
"serde_bytes",
"serde_with",
2022-08-05 20:43:46 +02:00
"sha-1",
2022-10-26 17:51:27 +02:00
"sha2",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2021-10-06 23:42:44 +02:00
"stringprep",
2022-10-26 17:51:27 +02:00
"strsim",
2021-10-06 23:42:44 +02:00
"take_mut",
"thiserror",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-12-11 16:31:32 +01:00
"tokio-rustls",
2023-05-22 13:47:21 +02:00
"tokio-util 0.7.8",
2022-02-18 02:44:53 +01:00
"trust-dns-proto",
"trust-dns-resolver",
2021-10-06 23:42:44 +02:00
"typed-builder",
2023-05-22 13:47:21 +02:00
"uuid 1.3.3",
2022-12-11 16:25:15 +01:00
"webpki-roots 0.22.6",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "multer"
2023-05-22 13:47:21 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"encoding_rs",
2021-10-07 00:56:44 +02:00
"futures-util",
"http",
"httparse",
"log",
2022-01-27 03:58:13 +01:00
"memchr",
"mime",
2023-05-22 13:47:21 +02:00
"spin 0.9.8",
2022-02-18 02:44:53 +01:00
"version_check",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "multipart-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-multipart",
2022-02-18 02:44:53 +01:00
"actix-web",
"env_logger",
"futures-util",
"log",
2020-09-16 02:11:49 +02:00
"sanitize-filename",
2023-05-22 13:47:21 +02:00
"uuid 1.3.3",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-08-01 02:17:59 +02:00
name = "multipart-s3-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-multipart",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
2022-08-01 02:17:59 +02:00
"aws-config",
"aws-sdk-s3",
2020-09-16 02:11:49 +02:00
"dotenv",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:15:16 +01:00
"futures-util",
2022-02-18 03:13:08 +01:00
"log",
2020-09-16 02:11:49 +02:00
"sanitize-filename",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "mysql"
2022-12-11 16:25:15 +01:00
version = "23.0.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "05f11339ca5c251941805d51362a07823605a80586ced92914ab7de84fba813f"
2020-09-16 02:11:49 +02:00
dependencies = [
"bufstream",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-10-26 17:51:27 +02:00
"crossbeam",
"flate2",
2020-09-16 02:11:49 +02:00
"io-enum",
"libc",
2022-07-10 00:11:36 +02:00
"lru",
2020-09-16 02:11:49 +02:00
"mysql_common",
"named_pipe",
"native-tls",
2022-07-10 00:11:36 +02:00
"once_cell",
"pem",
2020-09-16 02:11:49 +02:00
"percent-encoding",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2020-09-16 02:11:49 +02:00
"twox-hash",
"url",
]
[[package]]
name = "mysql_common"
2022-12-11 16:25:15 +01:00
version = "0.29.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "9006c95034ccf7b903d955f210469119f6c3477fc9c9e7a7845ce38a3e665c2a"
2020-09-16 02:11:49 +02:00
dependencies = [
"base64 0.13.1",
2020-09-16 02:11:49 +02:00
"bigdecimal",
2022-07-10 00:11:36 +02:00
"bindgen",
2020-09-16 02:11:49 +02:00
"bitflags",
2022-07-10 00:11:36 +02:00
"bitvec",
2020-09-16 02:11:49 +02:00
"byteorder",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-07-10 00:11:36 +02:00
"cc",
"cmake",
"crc32fast",
2020-09-16 02:11:49 +02:00
"flate2",
2022-07-10 00:11:36 +02:00
"frunk",
2020-09-16 02:11:49 +02:00
"lazy_static",
"lexical",
2022-10-26 17:51:27 +02:00
"num-bigint",
"num-traits",
2022-07-10 00:11:36 +02:00
"rand 0.8.5",
2020-09-16 02:11:49 +02:00
"regex",
"rust_decimal",
2022-07-10 00:11:36 +02:00
"saturating",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2022-12-11 16:25:15 +01:00
"sha1 0.10.5",
2022-10-26 17:51:27 +02:00
"sha2",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2022-07-10 00:11:36 +02:00
"subprocess",
"thiserror",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
"uuid 1.3.3",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "named_pipe"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad9c443cce91fc3e12f017290db75dde490d685cdaaf508d7159d7cf41f0eb2b"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "native-tls"
2022-12-11 16:25:15 +01:00
version = "0.2.11"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2020-09-16 02:11:49 +02:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
2021-10-07 00:56:44 +02:00
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-02-18 03:02:44 +01:00
[[package]]
name = "nested-routing"
version = "1.0.0"
dependencies = [
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-12-30 17:30:16 +01:00
"log",
"serde",
2022-02-18 03:02:44 +01:00
"serde_json",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "net2"
2022-10-26 17:51:27 +02:00
version = "0.2.38"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631"
2020-09-16 02:11:49 +02:00
dependencies = [
"cfg-if 0.1.10",
2020-09-16 02:11:49 +02:00
"libc",
"winapi 0.3.9",
]
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2021-03-03 15:37:17 +01:00
[[package]]
name = "nom"
2023-02-26 22:01:15 +01:00
version = "7.1.3"
2021-03-03 15:37:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2021-03-03 15:37:17 +01:00
dependencies = [
"memchr",
2021-10-07 00:56:44 +02:00
"minimal-lexical",
2021-03-03 15:37:17 +01:00
]
2022-10-16 22:49:01 +02:00
[[package]]
name = "notify"
2023-05-22 13:47:21 +02:00
version = "5.2.0"
2022-10-16 22:49:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486"
2022-10-16 22:49:01 +02:00
dependencies = [
"bitflags",
"filetime",
"fsevent-sys",
"inotify",
"kqueue",
"libc",
2023-02-26 22:01:15 +01:00
"mio 0.8.6",
2022-10-16 22:49:01 +02:00
"walkdir",
2023-05-22 13:47:21 +02:00
"windows-sys 0.45.0",
2022-10-16 22:49:01 +02:00
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "num-bigint"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2020-09-16 02:11:49 +02:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "num-integer"
version = "0.1.45"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2020-09-16 02:11:49 +02:00
dependencies = [
"autocfg",
"num-traits",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "num-traits"
version = "0.2.15"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2020-09-16 02:11:49 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2022-12-30 17:48:10 +01:00
version = "1.15.0"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-01-27 03:58:13 +01:00
dependencies = [
2022-12-30 17:48:10 +01:00
"hermit-abi 0.2.6",
2022-01-27 03:58:13 +01:00
"libc",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "once_cell"
2023-02-26 22:01:15 +01:00
version = "1.17.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2020-09-16 02:11:49 +02:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
version = "0.10.55"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
2020-09-16 02:11:49 +02:00
dependencies = [
"bitflags",
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
"foreign-types",
"libc",
2021-10-07 00:56:44 +02:00
"once_cell",
"openssl-macros",
2020-09-16 02:11:49 +02:00
"openssl-sys",
]
[[package]]
name = "openssl-auto-le"
version = "1.0.0"
dependencies = [
"acme-micro",
2022-02-18 02:44:53 +01:00
"actix-files",
"actix-web",
"anyhow",
2022-10-26 17:51:27 +02:00
"env_logger",
"log",
"openssl",
2023-05-22 13:47:21 +02:00
"reqwest 0.11.18",
]
[[package]]
name = "openssl-macros"
2023-05-22 13:47:21 +02:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "openssl-probe"
2022-01-27 03:58:13 +01:00
version = "0.1.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2020-09-16 02:11:49 +02:00
[[package]]
name = "openssl-sys"
version = "0.9.90"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
2020-09-16 02:11:49 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
"dlv-list",
"hashbrown 0.12.3",
]
[[package]]
name = "output_vt100"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
dependencies = [
"winapi 0.3.9",
]
2023-01-07 16:23:31 +01:00
[[package]]
name = "outref"
version = "0.5.1"
2023-01-07 16:23:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
2023-01-07 16:23:31 +01:00
2022-12-30 17:23:24 +01:00
[[package]]
name = "parking_lot"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
dependencies = [
"lock_api 0.3.4",
"parking_lot_core 0.6.3",
"rustc_version 0.2.3",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "parking_lot"
2021-10-07 00:56:44 +02:00
version = "0.11.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2020-09-16 02:11:49 +02:00
dependencies = [
"instant",
2022-12-30 17:23:24 +01:00
"lock_api 0.4.9",
2022-12-30 17:48:10 +01:00
"parking_lot_core 0.8.6",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
2022-12-30 17:23:24 +01:00
"lock_api 0.4.9",
2023-02-26 22:01:15 +01:00
"parking_lot_core 0.9.7",
2020-09-16 02:11:49 +02:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "parking_lot_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a"
dependencies = [
"cfg-if 0.1.10",
"cloudabi",
"libc",
"redox_syscall 0.1.57",
"rustc_version 0.2.3",
"smallvec 0.6.14",
"winapi 0.3.9",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "parking_lot_core"
2022-12-30 17:48:10 +01:00
version = "0.8.6"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
"instant",
"libc",
2022-12-30 17:23:24 +01:00
"redox_syscall 0.2.16",
"smallvec 1.10.0",
2020-09-16 02:11:49 +02:00
"winapi 0.3.9",
]
[[package]]
name = "parking_lot_core"
2023-02-26 22:01:15 +01:00
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
dependencies = [
"cfg-if 1.0.0",
"libc",
2022-12-30 17:23:24 +01:00
"redox_syscall 0.2.16",
"smallvec 1.10.0",
2023-02-26 22:01:15 +01:00
"windows-sys 0.45.0",
]
[[package]]
name = "parse-size"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae"
2020-09-16 02:11:49 +02:00
[[package]]
name = "parse-zoneinfo"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
dependencies = [
"regex",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "paste"
2023-03-14 03:36:22 +01:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2021-10-06 23:42:44 +02:00
[[package]]
name = "pbkdf2"
2023-03-14 03:36:22 +01:00
version = "0.11.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"digest",
2021-10-06 23:42:44 +02:00
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
[[package]]
name = "pem"
2023-02-26 22:01:15 +01:00
version = "1.1.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
2022-07-10 00:11:36 +02:00
dependencies = [
"base64 0.13.1",
2022-07-10 00:11:36 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "percent-encoding"
2022-09-11 00:07:55 +02:00
version = "2.2.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2020-09-16 02:11:49 +02:00
[[package]]
name = "pest"
2023-05-22 13:47:21 +02:00
version = "2.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-08-05 20:43:46 +02:00
"thiserror",
2020-09-16 02:11:49 +02:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
2023-05-22 13:47:21 +02:00
version = "2.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6b79d4c71c865a25a4322296122e3924d30bc8ee0834c8bfc8b95f7f054afbfb"
2020-09-16 02:11:49 +02:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2023-05-22 13:47:21 +02:00
version = "2.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6c435bf1076437b851ebc8edc3a18442796b30f1728ffea6262d59bbe28b077e"
2020-09-16 02:11:49 +02:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "pest_meta"
2023-05-22 13:47:21 +02:00
version = "2.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "745a452f8eb71e39ffd8ee32b3c5f51d03845f99786fa9b68db6ff509c505411"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-08-05 20:43:46 +02:00
"once_cell",
2020-09-16 02:11:49 +02:00
"pest",
2023-02-26 22:01:15 +01:00
"sha2",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "phf"
2022-09-11 00:07:55 +02:00
version = "0.10.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-09-11 00:07:55 +02:00
"phf_shared 0.10.0",
2022-01-27 03:58:13 +01:00
]
[[package]]
name = "phf"
2022-08-28 19:40:59 +02:00
version = "0.11.1"
2022-08-05 20:43:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-28 19:40:59 +02:00
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
2022-08-05 20:43:46 +02:00
dependencies = [
2022-08-28 19:40:59 +02:00
"phf_shared 0.11.1",
2022-08-05 20:43:46 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "phf_codegen"
2022-09-11 00:07:55 +02:00
version = "0.10.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"phf_generator 0.10.0",
2022-09-11 00:07:55 +02:00
"phf_shared 0.10.0",
2022-01-27 03:58:13 +01:00
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "phf_codegen"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a56ac890c5e3ca598bbdeaa99964edb5b0258a583a9eb6ef4e89fc85d9224770"
dependencies = [
"phf_generator 0.11.1",
"phf_shared 0.11.1",
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared 0.10.0",
"rand 0.8.5",
2022-01-27 03:58:13 +01:00
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "phf_generator"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
dependencies = [
"phf_shared 0.11.1",
"rand 0.8.5",
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2022-08-05 20:43:46 +02:00
dependencies = [
"siphasher",
]
[[package]]
name = "phf_shared"
2022-08-28 19:40:59 +02:00
version = "0.11.1"
2022-08-05 20:43:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-28 19:40:59 +02:00
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
2022-01-27 03:58:13 +01:00
dependencies = [
"siphasher",
2023-05-22 13:47:21 +02:00
"uncased",
2022-01-27 03:58:13 +01:00
]
2020-10-30 05:22:24 +01:00
[[package]]
name = "pin-project"
2023-05-22 13:47:21 +02:00
version = "1.1.0"
2020-10-30 05:22:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead"
2020-10-30 05:22:24 +01:00
dependencies = [
2022-02-18 02:44:53 +01:00
"pin-project-internal",
2020-09-16 02:11:49 +02:00
]
2020-10-30 05:22:24 +01:00
[[package]]
name = "pin-project-internal"
2023-05-22 13:47:21 +02:00
version = "1.1.0"
2020-10-30 05:22:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07"
2020-10-30 05:22:24 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-10-30 05:22:24 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "pin-project-lite"
2021-10-07 00:56:44 +02:00
version = "0.1.12"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
[[package]]
name = "pin-project-lite"
version = "0.2.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2020-09-16 02:11:49 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2023-05-22 13:47:21 +02:00
version = "0.3.27"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2020-09-16 02:11:49 +02:00
[[package]]
name = "polyval"
2022-10-16 22:20:01 +02:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
2022-08-05 20:43:46 +02:00
"opaque-debug",
"universal-hash",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "postgres-protocol"
2023-05-22 13:47:21 +02:00
version = "0.6.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"base64 0.21.1",
2020-09-16 02:11:49 +02:00
"byteorder",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2020-09-16 02:11:49 +02:00
"fallible-iterator",
2022-08-01 02:17:59 +02:00
"hmac",
"md-5",
2020-09-16 02:11:49 +02:00
"memchr",
"rand 0.8.5",
2022-10-26 17:51:27 +02:00
"sha2",
2020-09-16 02:11:49 +02:00
"stringprep",
]
[[package]]
name = "postgres-types"
2023-05-22 13:47:21 +02:00
version = "0.2.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2020-09-16 02:11:49 +02:00
"fallible-iterator",
"postgres-protocol",
]
[[package]]
name = "ppv-lite86"
2022-12-11 16:25:15 +01:00
version = "0.2.17"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2020-09-16 02:11:49 +02:00
[[package]]
name = "pq-sys"
2023-05-22 13:47:21 +02:00
version = "0.4.8"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "31c0052426df997c0cbd30789eb44ca097e3541717a7b8fa36b1c464ee7edebd"
2020-09-16 02:11:49 +02:00
dependencies = [
"vcpkg",
]
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "pretty_assertions"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
dependencies = [
"ctor",
"diff",
"output_vt100",
"yansi",
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "prettyplease"
2023-05-22 13:47:21 +02:00
version = "0.1.25"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
2022-01-27 03:58:13 +01:00
dependencies = [
"proc-macro2",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-01-27 03:58:13 +01:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "proc-macro-crate"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
dependencies = [
2023-05-22 13:47:21 +02:00
"toml 0.5.11",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "proc-macro-crate"
2023-03-14 03:36:22 +01:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
2022-08-05 20:43:46 +02:00
"once_cell",
2023-02-26 22:01:15 +01:00
"toml_edit",
]
2021-04-26 13:32:32 +02:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-02-18 02:44:53 +01:00
"version_check",
2021-04-26 13:32:32 +02:00
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
2022-02-18 02:44:53 +01:00
"version_check",
2021-04-26 13:32:32 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "proc-macro-hack"
2022-12-30 17:48:10 +01:00
version = "0.5.20+deprecated"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2020-09-16 02:11:49 +02:00
[[package]]
name = "proc-macro2"
2023-05-22 13:47:21 +02:00
version = "1.0.58"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"unicode-ident",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "prost"
2023-05-22 13:47:21 +02:00
version = "0.11.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2020-09-16 02:11:49 +02:00
"prost-derive",
]
[[package]]
name = "prost-derive"
2023-05-22 13:47:21 +02:00
version = "0.11.9"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
2020-09-16 02:11:49 +02:00
dependencies = [
"anyhow",
2022-02-17 21:22:36 +01:00
"itertools",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "protobuf-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-protobuf",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-17 21:22:36 +01:00
"log",
2020-09-16 02:11:49 +02:00
"prost",
"prost-derive",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "ptr_meta"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
dependencies = [
"ptr_meta_derive",
]
[[package]]
name = "ptr_meta_derive"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "publicsuffix"
version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
dependencies = [
2022-09-11 00:07:55 +02:00
"idna 0.2.3",
"url",
]
[[package]]
name = "qstring"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e"
dependencies = [
"percent-encoding",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
2023-05-22 13:47:21 +02:00
version = "1.0.27"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "r2d2"
2022-07-09 21:43:47 +02:00
version = "0.8.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 21:43:47 +02:00
checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
2020-09-16 02:11:49 +02:00
dependencies = [
"log",
2022-07-09 21:43:47 +02:00
"parking_lot 0.12.1",
2020-09-16 02:11:49 +02:00
"scheduled-thread-pool",
]
[[package]]
name = "r2d2_mysql"
2022-12-11 16:25:15 +01:00
version = "23.0.0"
2022-12-12 03:41:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9733d738ce65959a744f387bae69aa690a867e18d48e5486b171c47bc7b0c575"
2020-09-16 02:11:49 +02:00
dependencies = [
"mysql",
"r2d2",
]
[[package]]
name = "r2d2_sqlite"
2022-07-09 23:54:51 +02:00
version = "0.20.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 23:54:51 +02:00
checksum = "6fdc8e4da70586127893be32b7adf21326a4c6b1aba907611edf467d13ffe895"
2020-09-16 02:11:49 +02:00
dependencies = [
"r2d2",
"rusqlite",
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "radium"
2022-12-11 16:25:15 +01:00
version = "0.7.0"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2022-07-10 00:11:36 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
2021-10-07 00:56:44 +02:00
"getrandom 0.1.16",
2020-09-16 02:11:49 +02:00
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2021-10-07 00:56:44 +02:00
"rand_chacha 0.3.1",
2022-10-16 22:20:01 +02:00
"rand_core 0.6.4",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
2021-10-07 00:56:44 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-10-16 22:20:01 +02:00
"rand_core 0.6.4",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-10-07 00:56:44 +02:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2022-10-16 22:20:01 +02:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "redis"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "152f3863635cbb76b73bc247845781098302c6c9ad2060e1a9a7de56840346b6"
dependencies = [
"async-trait",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-12-30 17:23:24 +01:00
"combine 4.6.6",
"futures-util",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-12-30 17:23:24 +01:00
"percent-encoding",
"pin-project-lite 0.2.9",
"ryu",
"sha1 0.6.1",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2022-12-30 17:23:24 +01:00
"url",
]
2022-07-10 00:13:39 +02:00
[[package]]
name = "redis"
2023-02-26 22:01:15 +01:00
version = "0.22.3"
2022-07-10 00:13:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "aa8455fa3621f6b41c514946de66ea0531f57ca017b2e6c7cc368035ea5b46df"
2022-07-10 00:13:39 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"arc-swap",
2022-07-10 00:13:39 +02:00
"async-trait",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-08-28 19:40:59 +02:00
"combine 4.6.6",
2023-05-22 13:47:21 +02:00
"futures 0.3.28",
2022-07-10 00:13:39 +02:00
"futures-util",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-07-10 00:13:39 +02:00
"percent-encoding",
"pin-project-lite 0.2.9",
2022-08-28 19:40:59 +02:00
"ryu",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
2022-07-10 00:13:39 +02:00
"url",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "redis-async"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2777130e406c74c28b6cddc0194fcdc2553b5a8795eef9f6384bd3b70a07ba3f"
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"futures-channel",
"futures-sink",
"futures-util",
"log",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
]
[[package]]
name = "redis-session-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix-session",
2022-02-02 16:50:58 +01:00
"actix-test",
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:41:32 +01:00
"log",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
2020-09-16 02:11:49 +02:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2020-09-16 02:11:49 +02:00
[[package]]
name = "redox_syscall"
2022-08-05 20:43:46 +02:00
version = "0.2.16"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-05 20:43:46 +02:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-10-07 00:56:44 +02:00
dependencies = [
"bitflags",
]
2020-09-16 02:11:49 +02:00
2023-05-22 13:47:21 +02:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "regex"
2023-05-22 13:47:21 +02:00
version = "1.8.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"aho-corasick 1.0.1",
2020-09-16 02:11:49 +02:00
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-05-22 13:47:21 +02:00
version = "0.7.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
2020-09-16 02:11:49 +02:00
2022-12-11 16:25:15 +01:00
[[package]]
name = "rend"
2023-02-26 22:01:15 +01:00
version = "0.4.0"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
2022-12-11 16:25:15 +01:00
dependencies = [
"bytecheck",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "reqwest"
2021-10-07 00:56:44 +02:00
version = "0.10.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c"
2020-09-16 02:11:49 +02:00
dependencies = [
"base64 0.13.1",
2020-09-16 02:11:49 +02:00
"bytes 0.5.6",
"encoding_rs",
"futures-core",
"futures-util",
"http",
2022-01-31 03:45:53 +01:00
"http-body 0.3.1",
"hyper 0.13.10",
"hyper-tls 0.4.3",
2020-09-16 02:11:49 +02:00
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"mime_guess",
"native-tls",
"percent-encoding",
"pin-project-lite 0.2.9",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
"serde_urlencoded",
2021-10-07 00:56:44 +02:00
"tokio 0.2.25",
2020-09-16 02:11:49 +02:00
"tokio-tls",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg 0.7.0",
]
[[package]]
name = "reqwest"
2023-05-22 13:47:21 +02:00
version = "0.11.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
dependencies = [
2023-05-22 13:47:21 +02:00
"base64 0.21.1",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"encoding_rs",
"futures-core",
"futures-util",
2023-05-22 13:47:21 +02:00
"h2 0.3.19",
"http",
"http-body 0.4.5",
2023-05-22 13:47:21 +02:00
"hyper 0.14.26",
"hyper-tls 0.5.0",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
2022-10-16 22:20:01 +02:00
"once_cell",
"percent-encoding",
"pin-project-lite 0.2.9",
"serde",
"serde_json",
"serde_urlencoded",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-native-tls",
2023-05-22 13:47:21 +02:00
"tokio-util 0.7.8",
2022-07-09 21:43:47 +02:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
2023-02-26 22:01:15 +01:00
"wasm-streams",
"web-sys",
2022-03-15 18:32:27 +01:00
"winreg 0.10.1",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "resolv-conf"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
version = "0.7.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
2020-09-16 02:11:49 +02:00
dependencies = [
"hostname",
"quick-error",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2020-09-16 02:11:49 +02:00
[[package]]
name = "rhai"
2023-05-22 13:47:21 +02:00
version = "1.14.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "b2c99b27f6661b4d217b6aa21727c6a0808729266edfc8a8877042d609b1904e"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"ahash 0.8.3",
"bitflags",
"instant",
"num-traits",
"rhai_codegen",
"serde",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2023-02-26 22:01:15 +01:00
"smartstring",
]
[[package]]
name = "rhai_codegen"
2023-01-07 16:23:31 +01:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "db74e3fdd29d969a0ec1f8e79171a6f0f71d0429293656901db382d248c4c021"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "ring"
2021-10-07 00:56:44 +02:00
version = "0.16.20"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2020-09-16 02:11:49 +02:00
dependencies = [
"cc",
"libc",
"once_cell",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"spin 0.5.2",
2020-09-16 02:11:49 +02:00
"untrusted",
"web-sys",
"winapi 0.3.9",
]
2022-02-02 01:44:58 +01:00
[[package]]
name = "ritelinked"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98f2771d255fd99f0294f13249fecd0cae6e074f86b4197ec1f1689d537b44d3"
dependencies = [
2022-08-28 19:40:59 +02:00
"ahash 0.7.6",
"hashbrown 0.11.2",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "rkyv"
2023-05-22 13:47:21 +02:00
version = "0.7.42"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
2022-12-11 16:25:15 +01:00
dependencies = [
2023-05-22 13:47:21 +02:00
"bitvec",
2022-12-11 16:25:15 +01:00
"bytecheck",
"hashbrown 0.12.3",
"ptr_meta",
"rend",
"rkyv_derive",
"seahash",
2023-05-22 13:47:21 +02:00
"tinyvec",
"uuid 1.3.3",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "rkyv_derive"
2023-05-22 13:47:21 +02:00
version = "0.7.42"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
2022-12-11 16:25:15 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-11 16:25:15 +01:00
]
[[package]]
name = "ron"
2022-07-09 21:43:47 +02:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 21:43:47 +02:00
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
dependencies = [
"base64 0.13.1",
"bitflags",
"serde",
2022-02-02 01:44:58 +01:00
]
[[package]]
name = "roxmltree"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b"
dependencies = [
"xmlparser",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "run-in-thread"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
"log",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "rusqlite"
2022-07-09 23:54:51 +02:00
version = "0.27.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 23:54:51 +02:00
checksum = "85127183a999f7db96d1a976a309eebbfb6ea3b0b400ddd8340190129de6eb7a"
2020-09-16 02:11:49 +02:00
dependencies = [
"bitflags",
"fallible-iterator",
"fallible-streaming-iterator",
2023-03-14 04:11:49 +01:00
"hashlink",
2022-02-06 09:31:17 +01:00
"libsqlite3-sys",
2020-09-16 02:11:49 +02:00
"memchr",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "rust-argon2"
2022-02-02 16:21:49 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-02 16:21:49 +01:00
checksum = "b50162d19404029c1ceca6f6980fe40d45c8b369f6f44446fa14bb39573b5bb9"
2020-09-16 02:11:49 +02:00
dependencies = [
"base64 0.13.1",
2020-09-16 02:11:49 +02:00
"blake2b_simd",
2023-02-26 22:01:15 +01:00
"constant_time_eq 0.1.5",
2023-03-14 03:36:22 +01:00
"crossbeam-utils 0.8.15",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "rust-ini"
version = "0.18.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
"cfg-if 1.0.0",
"ordered-multimap",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "rust_decimal"
2023-05-22 13:47:21 +02:00
version = "1.29.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "26bd36b60561ee1fb5ec2817f198b6fd09fa571c897a5e86d1487cfc2b096dfc"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"arrayvec",
2022-12-11 16:25:15 +01:00
"borsh",
"bytecheck",
"byteorder",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"num-traits",
2022-12-11 16:25:15 +01:00
"rand 0.8.5",
"rkyv",
"serde",
2022-12-11 16:25:15 +01:00
"serde_json",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-07-10 00:11:36 +02:00
name = "rustc-hash"
version = "1.1.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-10 00:11:36 +02:00
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2020-09-16 02:11:49 +02:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
2021-03-03 17:38:53 +01:00
"semver 0.9.0",
2020-09-16 02:11:49 +02:00
]
2021-10-07 00:56:44 +02:00
[[package]]
name = "rustc_version"
2022-01-27 03:58:13 +01:00
version = "0.4.0"
2021-10-07 00:56:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-10-07 00:56:44 +02:00
dependencies = [
2023-03-14 03:36:22 +01:00
"semver 1.0.17",
]
[[package]]
name = "rustc_version_runtime"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d31b7153270ebf48bf91c65ae5b0c00e749c4cfad505f66530ac74950249582f"
dependencies = [
"rustc_version 0.2.3",
"semver 0.9.0",
2021-10-07 00:56:44 +02:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "rustix"
2023-05-22 13:47:21 +02:00
version = "0.37.19"
2022-12-11 16:25:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
2022-12-11 16:25:15 +01:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2022-12-11 16:25:15 +01:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "rustls"
version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
dependencies = [
"base64 0.13.1",
2021-10-06 23:42:44 +02:00
"log",
"ring",
2022-01-31 03:45:53 +01:00
"sct 0.6.1",
"webpki 0.21.4",
]
[[package]]
name = "rustls"
2023-02-26 22:01:15 +01:00
version = "0.20.8"
2022-01-31 03:45:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2022-01-31 03:45:53 +01:00
dependencies = [
"log",
"ring",
"sct 0.7.0",
"webpki 0.22.0",
2021-10-06 23:42:44 +02:00
]
2020-10-30 05:22:24 +01:00
[[package]]
name = "rustls-client-cert"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-tls",
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2020-10-30 05:22:24 +01:00
"log",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2023-03-14 03:36:22 +01:00
"rustls-pemfile",
2020-10-30 05:22:24 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "rustls-example"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-files",
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2022-03-15 19:17:19 +01:00
"log",
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2023-03-14 03:36:22 +01:00
"rustls-pemfile",
2020-09-16 02:11:49 +02:00
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "rustls-native-certs"
2022-12-11 16:31:32 +01:00
version = "0.6.2"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:31:32 +01:00
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
2022-08-01 02:17:59 +02:00
dependencies = [
"openssl-probe",
2023-03-14 03:36:22 +01:00
"rustls-pemfile",
2022-08-01 02:17:59 +02:00
"schannel",
"security-framework",
]
2022-03-15 19:17:19 +01:00
[[package]]
name = "rustls-pemfile"
2023-02-26 22:01:15 +01:00
version = "1.0.2"
2022-03-15 19:17:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2022-03-15 19:17:19 +01:00
dependencies = [
2023-05-22 13:47:21 +02:00
"base64 0.21.1",
2022-03-15 19:17:19 +01:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "rustversion"
2023-03-14 03:36:22 +01:00
version = "1.0.12"
2022-12-30 17:23:24 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
2022-12-30 17:23:24 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
2022-01-27 03:58:13 +01:00
name = "ryu"
2023-03-14 03:36:22 +01:00
version = "1.0.13"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2020-09-16 02:11:49 +02:00
2022-07-10 00:39:21 +02:00
[[package]]
name = "sailfish"
2023-05-22 13:47:21 +02:00
version = "0.6.1"
2022-07-10 00:39:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "29a48cead573ab494535cd9f24838a721a613e5da899ee974c8e2fdbb3d60222"
2022-07-10 00:39:21 +02:00
dependencies = [
"itoap",
"ryu",
"sailfish-macros",
"version_check",
]
[[package]]
name = "sailfish-compiler"
2023-05-22 13:47:21 +02:00
version = "0.6.1"
2022-07-10 00:39:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f26deb100e96e303d266d1852525b1da033678ed9eabd539f5ed5eba01333394"
2022-07-10 00:39:21 +02:00
dependencies = [
"filetime",
"home",
"memchr",
"proc-macro2",
"quote",
"serde",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
"toml 0.7.4",
2022-07-10 00:39:21 +02:00
]
[[package]]
name = "sailfish-macros"
2023-05-22 13:47:21 +02:00
version = "0.6.1"
2022-07-10 00:39:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "41162f9a79f2541458a1cf20f8d81d55bb2bcbdd03d295c29765d9bcb43188c9"
2022-07-10 00:39:21 +02:00
dependencies = [
"proc-macro2",
"sailfish-compiler",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "sanitize-filename"
2022-07-09 23:54:51 +02:00
version = "0.4.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 23:54:51 +02:00
checksum = "08c502bdb638f1396509467cb0580ef3b29aa2a45c5d43e5d84928241280296c"
2020-09-16 02:11:49 +02:00
dependencies = [
"lazy_static",
"regex",
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "saturating"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece8e78b2f38ec51c51f5d475df0a7187ba5111b2a28bdc761ee05b075d40a71"
2020-09-16 02:11:49 +02:00
[[package]]
name = "schannel"
2023-02-26 22:01:15 +01:00
version = "0.1.21"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-02-26 22:01:15 +01:00
"windows-sys 0.42.0",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "scheduled-thread-pool"
2023-03-14 03:36:22 +01:00
version = "0.2.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
2020-09-16 02:11:49 +02:00
dependencies = [
"parking_lot 0.12.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sct"
2021-10-07 00:56:44 +02:00
version = "0.6.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
2020-09-16 02:11:49 +02:00
dependencies = [
"ring",
"untrusted",
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "seahash"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2020-09-16 02:11:49 +02:00
[[package]]
name = "security-framework"
2023-05-22 13:47:21 +02:00
version = "2.9.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2020-09-16 02:11:49 +02:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-05-22 13:47:21 +02:00
version = "2.9.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2020-09-16 02:11:49 +02:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "self_cell"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af"
2020-09-16 02:11:49 +02:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
2022-01-27 03:58:13 +01:00
"semver-parser",
2021-03-03 17:38:53 +01:00
]
[[package]]
name = "semver"
2023-03-14 03:36:22 +01:00
version = "1.0.17"
2021-03-03 17:38:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2020-09-16 02:11:49 +02:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
[[package]]
name = "serde"
2023-05-22 13:47:21 +02:00
version = "1.0.163"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
2020-09-16 02:11:49 +02:00
dependencies = [
"serde_derive",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "serde_bytes"
2023-02-26 22:01:15 +01:00
version = "0.11.9"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294"
2021-10-06 23:42:44 +02:00
dependencies = [
"serde",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "serde_derive"
2023-05-22 13:47:21 +02:00
version = "1.0.163"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
2022-07-09 21:48:05 +02:00
[[package]]
name = "serde_html_form"
2023-03-14 03:40:02 +01:00
version = "0.2.0"
2022-07-09 21:48:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:40:02 +01:00
checksum = "53192e38d5c88564b924dbe9b60865ecbb71b81d38c4e61c817cffd3e36ef696"
2022-07-09 21:48:05 +02:00
dependencies = [
"form_urlencoded",
"indexmap",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-07-09 21:48:05 +02:00
"ryu",
"serde",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "serde_json"
2023-05-22 13:47:21 +02:00
version = "1.0.96"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2020-09-16 02:11:49 +02:00
dependencies = [
"indexmap",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2020-09-16 02:11:49 +02:00
"ryu",
"serde",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "serde_plain"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae"
dependencies = [
"serde",
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "serde_spanned"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d"
dependencies = [
"serde",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "serde_urlencoded"
2022-01-27 03:58:13 +01:00
version = "0.7.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"form_urlencoded",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"ryu",
"serde",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "serde_with"
version = "1.14.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff"
2021-10-06 23:42:44 +02:00
dependencies = [
"serde",
2021-10-06 23:42:44 +02:00
"serde_with_macros",
]
[[package]]
name = "serde_with_macros"
version = "1.5.2"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-10-26 17:51:27 +02:00
"darling 0.13.4",
2021-10-06 23:42:44 +02:00
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "server-sent-events"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
"futures-util",
"log",
"parking_lot 0.12.1",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-stream",
2020-09-16 02:11:49 +02:00
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "sha-1"
2022-12-11 16:25:15 +01:00
version = "0.10.1"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
2022-01-27 03:58:13 +01:00
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
2022-10-26 17:51:27 +02:00
"digest",
2022-01-27 03:58:13 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "sha1"
2022-01-27 03:58:13 +01:00
version = "0.6.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
2022-07-09 21:43:47 +02:00
[[package]]
name = "sha1"
2022-10-16 22:20:01 +02:00
version = "0.10.5"
2022-07-09 21:43:47 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-07-09 21:43:47 +02:00
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
2022-10-26 17:51:27 +02:00
"digest",
2022-07-09 21:43:47 +02:00
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2020-09-16 02:11:49 +02:00
[[package]]
name = "sha2"
2022-10-16 22:20:01 +02:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
2022-10-26 17:51:27 +02:00
"digest",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "shlex"
2022-01-31 03:45:53 +01:00
version = "1.1.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-31 03:45:53 +01:00
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
2020-09-16 02:11:49 +02:00
[[package]]
name = "shutdown-server"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2022-03-06 01:41:32 +01:00
"log",
"parking_lot 0.12.1",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "signal-hook-registry"
2023-02-26 22:01:15 +01:00
version = "1.4.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2020-09-16 02:11:49 +02:00
dependencies = [
"libc",
]
2023-03-14 03:36:22 +01:00
[[package]]
name = "simdutf8"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
2020-09-16 02:11:49 +02:00
[[package]]
name = "simple-auth-server"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
"actix-identity",
2022-10-26 17:51:27 +02:00
"actix-session",
2022-02-18 02:44:53 +01:00
"actix-web",
2020-09-16 02:11:49 +02:00
"chrono",
"derive_more",
"diesel",
"dotenv",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2022-09-11 17:14:07 +02:00
"once_cell",
2020-09-16 02:11:49 +02:00
"r2d2",
"rust-argon2",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
"sparkpost",
2023-05-22 13:47:21 +02:00
"time 0.3.21",
"uuid 1.3.3",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "siphasher"
2022-03-15 18:32:27 +01:00
version = "0.3.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-15 18:32:27 +01:00
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2020-09-16 02:11:49 +02:00
[[package]]
name = "slab"
2023-02-26 22:01:15 +01:00
version = "0.4.8"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
dependencies = [
"autocfg",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "slug"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3bc762e6a4b6c6fcaade73e77f9ebc6991b676f88bb2358bddb56560f073373"
dependencies = [
"deunicode",
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "smallvec"
version = "0.6.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
dependencies = [
"maybe-uninit",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "smallvec"
2022-10-16 22:20:01 +02:00
version = "1.10.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-08-28 19:40:59 +02:00
dependencies = [
"serde",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "smartstring"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
dependencies = [
"autocfg",
2022-07-09 21:43:47 +02:00
"serde",
2022-07-10 00:11:36 +02:00
"static_assertions",
"version_check",
]
[[package]]
name = "snafu"
2022-12-30 17:48:10 +01:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045"
dependencies = [
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
2022-12-30 17:48:10 +01:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 17:48:10 +01:00
checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2"
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "socket2"
2021-10-07 00:56:44 +02:00
version = "0.3.19"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
"libc",
"winapi 0.3.9",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "socket2"
2023-03-14 03:36:22 +01:00
version = "0.4.9"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2021-10-06 23:42:44 +02:00
dependencies = [
"libc",
"winapi 0.3.9",
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "socket2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "sparkpost"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba54017cf417e62d64260167de6b8d578f99a248225d3f9fd3396db1ab9e7fbc"
dependencies = [
"chrono",
"reqwest 0.10.10",
"serde",
2020-09-16 02:11:49 +02:00
"serde_derive",
"serde_json",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
[[package]]
name = "spin"
2023-05-22 13:47:21 +02:00
version = "0.9.8"
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2022-02-06 09:19:35 +01:00
dependencies = [
2022-12-30 17:23:24 +01:00
"lock_api 0.4.9",
2022-02-06 09:19:35 +01:00
]
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "standback"
2021-10-07 00:56:44 +02:00
version = "0.2.17"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"version_check",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "state"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
2022-02-18 04:36:04 +01:00
[[package]]
name = "static-files"
version = "1.0.0"
dependencies = [
"actix-files",
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-18 04:36:04 +01:00
"log",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
2021-10-07 00:56:44 +02:00
"rustc_version 0.2.3",
2020-09-16 02:11:49 +02:00
"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",
2020-09-16 02:11:49 +02:00
"serde_derive",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[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",
2020-09-16 02:11:49 +02:00
"serde_derive",
"serde_json",
2022-07-09 21:43:47 +02:00
"sha1 0.6.1",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
[[package]]
name = "string_cache"
2023-03-14 03:36:22 +01:00
version = "0.8.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
2020-09-16 02:11:49 +02:00
dependencies = [
"new_debug_unreachable",
"once_cell",
"parking_lot 0.12.1",
"phf_shared 0.10.0",
2020-09-16 02:11:49 +02:00
"precomputed-hash",
"serde",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "string_cache_codegen"
version = "0.5.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"phf_generator 0.10.0",
"phf_shared 0.10.0",
"proc-macro2",
"quote",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-12-30 17:23:24 +01:00
[[package]]
name = "strum"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.24.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-12-30 17:23:24 +01:00
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "subprocess"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086"
dependencies = [
"libc",
"winapi 0.3.9",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "subtle"
2023-05-22 13:47:21 +02:00
version = "2.5.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2020-09-16 02:11:49 +02:00
[[package]]
name = "syn"
2023-02-26 22:01:15 +01:00
version = "1.0.109"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2022-10-26 17:51:27 +02:00
"unicode-ident",
2020-09-16 02:11:49 +02:00
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "syn"
version = "2.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "take_mut"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
2022-07-10 00:11:36 +02:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2020-09-16 02:11:49 +02:00
[[package]]
name = "tempfile"
2023-05-22 13:47:21 +02:00
version = "3.5.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
2022-01-27 03:58:13 +01:00
"fastrand",
2023-05-22 13:47:21 +02:00
"redox_syscall 0.3.5",
2023-02-26 22:01:15 +01:00
"rustix",
2023-05-22 13:47:21 +02:00
"windows-sys 0.45.0",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-07-10 00:39:21 +02:00
name = "templating-askama"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2023-03-14 04:11:49 +01:00
"actix-web-lab",
2020-09-16 02:11:49 +02:00
"askama",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "templating-fluent"
version = "1.0.0"
dependencies = [
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"fluent-templates",
"handlebars",
"serde",
"serde_json",
]
2020-09-16 02:11:49 +02:00
[[package]]
2022-07-10 00:39:21 +02:00
name = "templating-handlebars"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-07-10 00:39:21 +02:00
"handlebars",
"serde_json",
]
2022-10-16 22:20:01 +02:00
[[package]]
name = "templating-minijinja"
version = "1.0.0"
dependencies = [
2022-10-16 22:36:23 +02:00
"actix-utils",
2022-10-16 22:20:01 +02:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2022-10-16 22:20:01 +02:00
"log",
"minijinja",
2022-10-16 22:49:01 +02:00
"minijinja-autoreload",
2022-10-16 22:20:01 +02:00
]
2022-07-10 00:39:21 +02:00
[[package]]
name = "templating-sailfish"
version = "0.1.0"
dependencies = [
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2022-07-10 00:39:21 +02:00
"log",
"sailfish",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-07-10 00:39:21 +02:00
name = "templating-tera"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"actix-web-lab",
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2022-07-10 00:39:21 +02:00
"tera",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-07-10 00:39:21 +02:00
name = "templating-tinytemplate"
2020-09-16 02:11:49 +02:00
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2020-09-16 02:11:49 +02:00
"serde_json",
2022-07-10 00:39:21 +02:00
"tinytemplate",
2020-09-16 02:11:49 +02:00
]
[[package]]
2022-07-10 00:39:21 +02:00
name = "templating-yarte"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
"derive_more",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2020-09-16 02:11:49 +02:00
"yarte",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "tendril"
version = "0.4.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2020-09-16 02:11:49 +02:00
dependencies = [
"futf",
"mac",
"utf-8",
]
[[package]]
name = "tera"
2023-05-22 13:47:21 +02:00
version = "1.17.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3df578c295f9ec044ff1c829daf31bb7581d5b3c2a7a3d87419afe1f2531438c"
2020-09-16 02:11:49 +02:00
dependencies = [
"chrono",
"chrono-tz",
"globwalk",
2023-05-22 13:47:21 +02:00
"humansize 1.1.1",
2020-09-16 02:11:49 +02:00
"lazy_static",
"percent-encoding",
"pest",
"pest_derive",
"rand 0.8.5",
2020-09-16 02:11:49 +02:00
"regex",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
"slug",
"unic-segment",
]
[[package]]
name = "termcolor"
2023-02-26 22:01:15 +01:00
version = "1.2.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2020-09-16 02:11:49 +02:00
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
2023-05-22 13:47:21 +02:00
version = "1.0.40"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2020-09-16 02:11:49 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-05-22 13:47:21 +02:00
version = "1.0.40"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "thread_local"
2023-05-22 13:47:21 +02:00
version = "1.1.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"cfg-if 1.0.0",
2021-10-07 00:56:44 +02:00
"once_cell",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "time"
2022-12-11 16:25:15 +01:00
version = "0.1.45"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2020-09-16 02:11:49 +02:00
dependencies = [
"libc",
2022-07-09 21:43:47 +02:00
"wasi 0.10.0+wasi-snapshot-preview1",
2020-09-16 02:11:49 +02:00
"winapi 0.3.9",
]
[[package]]
name = "time"
2021-10-07 00:56:44 +02:00
version = "0.2.27"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2020-09-16 02:11:49 +02:00
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
2022-01-27 03:58:13 +01:00
"time-macros 0.1.1",
2022-02-18 02:44:53 +01:00
"version_check",
2020-09-16 02:11:49 +02:00
"winapi 0.3.9",
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "time"
2023-05-22 13:47:21 +02:00
version = "0.3.21"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
2022-01-27 03:58:13 +01:00
dependencies = [
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-10-26 17:51:27 +02:00
"serde",
"time-core",
2023-05-22 13:47:21 +02:00
"time-macros 0.2.9",
2022-01-27 03:58:13 +01:00
]
2022-10-26 17:51:27 +02:00
[[package]]
name = "time-core"
2023-05-22 13:47:21 +02:00
version = "0.1.1"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2022-10-26 17:51:27 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "time-macros"
version = "0.1.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
2022-01-27 03:58:13 +01:00
[[package]]
name = "time-macros"
2023-05-22 13:47:21 +02:00
version = "0.2.9"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
2022-10-26 17:51:27 +02:00
dependencies = [
"time-core",
]
2022-01-27 03:58:13 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "time-macros-impl"
2021-10-07 00:56:44 +02:00
version = "0.1.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
2020-09-16 02:11:49 +02:00
"standback",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
2022-12-11 16:25:15 +01:00
[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
"crunchy",
]
[[package]]
name = "tinystr"
2023-02-26 22:01:15 +01:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "7ac3f5b6856e931e15e07b478e98c8045239829a65f9156d4fa7e7788197a5ef"
2022-10-26 17:51:27 +02:00
dependencies = [
"displaydoc",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tinytemplate"
2021-10-07 00:56:44 +02:00
version = "1.2.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2020-09-16 02:11:49 +02:00
dependencies = [
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-26 22:01:15 +01:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-12-11 16:32:09 +01:00
[[package]]
2023-03-14 04:11:49 +01:00
name = "tls-openssl"
2022-12-11 16:32:09 +01:00
version = "1.0.0"
dependencies = [
"actix-web",
"env_logger",
"log",
2023-03-14 04:11:49 +01:00
"openssl",
2022-12-11 16:32:09 +01:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "tokio"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"mio 0.6.23",
"num_cpus",
"tokio-codec",
"tokio-current-thread",
"tokio-executor",
"tokio-fs",
"tokio-io",
"tokio-reactor",
"tokio-sync",
"tokio-tcp",
"tokio-threadpool",
"tokio-timer",
"tokio-udp",
"tokio-uds",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tokio"
2021-10-07 00:56:44 +02:00
version = "0.2.25"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
2020-09-16 02:11:49 +02:00
dependencies = [
"bytes 0.5.6",
"fnv",
"futures-core",
"iovec",
"lazy_static",
"memchr",
2021-10-07 00:56:44 +02:00
"mio 0.6.23",
2020-09-16 02:11:49 +02:00
"num_cpus",
2021-10-07 00:56:44 +02:00
"pin-project-lite 0.1.12",
2020-09-16 02:11:49 +02:00
"slab",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "tokio"
2023-05-22 13:47:21 +02:00
version = "1.28.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
2021-10-06 23:42:44 +02:00
dependencies = [
"autocfg",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2021-10-06 23:42:44 +02:00
"libc",
2023-02-26 22:01:15 +01:00
"mio 0.8.6",
2021-10-06 23:42:44 +02:00
"num_cpus",
"parking_lot 0.12.1",
"pin-project-lite 0.2.9",
2021-10-06 23:42:44 +02:00
"signal-hook-registry",
2023-03-14 03:36:22 +01:00
"socket2 0.4.9",
2022-01-31 03:45:53 +01:00
"tokio-macros",
2023-05-22 13:47:21 +02:00
"windows-sys 0.48.0",
2020-09-16 02:11:49 +02:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "tokio-codec"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"tokio-io",
]
[[package]]
name = "tokio-current-thread"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
dependencies = [
"futures 0.1.31",
"tokio-executor",
]
[[package]]
name = "tokio-executor"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
dependencies = [
"crossbeam-utils 0.7.2",
"futures 0.1.31",
]
[[package]]
name = "tokio-fs"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4"
dependencies = [
"futures 0.1.31",
"tokio-io",
"tokio-threadpool",
]
[[package]]
name = "tokio-io"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"log",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tokio-macros"
2023-05-22 13:47:21 +02:00
version = "2.1.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
2022-01-31 03:45:53 +01:00
name = "tokio-native-tls"
2023-02-26 22:01:15 +01:00
version = "0.3.1"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2021-10-06 23:42:44 +02:00
dependencies = [
2022-01-31 03:45:53 +01:00
"native-tls",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2021-10-06 23:42:44 +02:00
]
2022-02-02 01:44:58 +01:00
[[package]]
name = "tokio-openssl"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a"
dependencies = [
"futures-util",
"openssl",
"openssl-sys",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-02-02 01:44:58 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tokio-pg-mapper"
version = "0.2.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93f2b78f3566383ffabc553c72bbb2f129962a54886c5c4d8e8c706f84eceab8"
2020-09-16 02:11:49 +02:00
dependencies = [
"tokio-postgres",
]
[[package]]
name = "tokio-pg-mapper-derive"
version = "0.2.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8548f756cd6eb4069c5af0fb0cec57001fb42bd1fb7330d8f24067ee3fa62608"
2020-09-16 02:11:49 +02:00
dependencies = [
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
"tokio-postgres",
]
[[package]]
name = "tokio-postgres"
2023-05-22 13:47:21 +02:00
version = "0.7.8"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
2020-09-16 02:11:49 +02:00
dependencies = [
"async-trait",
"byteorder",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2020-09-16 02:11:49 +02:00
"fallible-iterator",
2022-08-28 19:40:59 +02:00
"futures-channel",
"futures-util",
2020-09-16 02:11:49 +02:00
"log",
"parking_lot 0.12.1",
2020-09-16 02:11:49 +02:00
"percent-encoding",
2022-08-28 19:40:59 +02:00
"phf 0.11.1",
"pin-project-lite 0.2.9",
2020-09-16 02:11:49 +02:00
"postgres-protocol",
"postgres-types",
2023-05-22 13:47:21 +02:00
"socket2 0.5.3",
"tokio 1.28.1",
"tokio-util 0.7.8",
2020-09-16 02:11:49 +02:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "tokio-reactor"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
dependencies = [
"crossbeam-utils 0.7.2",
"futures 0.1.31",
"lazy_static",
"log",
"mio 0.6.23",
"num_cpus",
"parking_lot 0.9.0",
"slab",
"tokio-executor",
"tokio-io",
"tokio-sync",
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "tokio-rustls"
version = "0.23.4"
2022-01-31 03:45:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2022-01-31 03:45:53 +01:00
dependencies = [
2023-02-26 22:01:15 +01:00
"rustls 0.20.8",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-01-31 03:45:53 +01:00
"webpki 0.22.0",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "tokio-stream"
2023-05-22 13:47:21 +02:00
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
"futures-core",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-util 0.7.8",
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "tokio-sync"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
dependencies = [
"fnv",
"futures 0.1.31",
]
[[package]]
name = "tokio-tcp"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"iovec",
"mio 0.6.23",
"tokio-io",
"tokio-reactor",
]
[[package]]
name = "tokio-threadpool"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
dependencies = [
"crossbeam-deque 0.7.4",
"crossbeam-queue 0.2.3",
"crossbeam-utils 0.7.2",
"futures 0.1.31",
"lazy_static",
"log",
"num_cpus",
"slab",
"tokio-executor",
]
[[package]]
name = "tokio-timer"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
dependencies = [
"crossbeam-utils 0.7.2",
"futures 0.1.31",
"slab",
"tokio-executor",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tokio-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
dependencies = [
"native-tls",
2021-10-07 00:56:44 +02:00
"tokio 0.2.25",
2020-09-16 02:11:49 +02:00
]
2022-12-30 17:23:24 +01:00
[[package]]
name = "tokio-udp"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"log",
"mio 0.6.23",
"tokio-codec",
"tokio-io",
"tokio-reactor",
]
[[package]]
name = "tokio-uds"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0"
dependencies = [
"bytes 0.4.12",
"futures 0.1.31",
"iovec",
"libc",
"log",
"mio 0.6.23",
"mio-uds",
"tokio-codec",
"tokio-io",
"tokio-reactor",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tokio-util"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
dependencies = [
"bytes 0.5.6",
"futures-core",
"futures-sink",
"log",
2021-10-07 00:56:44 +02:00
"pin-project-lite 0.1.12",
"tokio 0.2.25",
2021-10-06 23:42:44 +02:00
]
[[package]]
name = "tokio-util"
2023-05-22 13:47:21 +02:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
dependencies = [
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
"futures-core",
2023-03-14 03:36:22 +01:00
"futures-io",
"futures-sink",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tracing",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "toml"
2023-02-26 22:01:15 +01:00
version = "0.5.11"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2020-09-16 02:11:49 +02:00
dependencies = [
"serde",
2020-09-16 02:11:49 +02:00
]
2023-05-22 13:47:21 +02:00
[[package]]
name = "toml"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
2023-02-26 22:01:15 +01:00
[[package]]
name = "toml_datetime"
2023-05-22 13:47:21 +02:00
version = "0.6.2"
2023-02-26 22:01:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f"
dependencies = [
"serde",
]
2023-02-26 22:01:15 +01:00
[[package]]
name = "toml_edit"
2023-05-22 13:47:21 +02:00
version = "0.19.9"
2023-02-26 22:01:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "92d964908cec0d030b812013af25a0e57fddfadb1e066ecc6681d86253129d4f"
2023-02-26 22:01:15 +01:00
dependencies = [
"indexmap",
2023-05-22 13:47:21 +02:00
"serde",
"serde_spanned",
2023-02-26 22:01:15 +01:00
"toml_datetime",
2023-03-14 03:36:22 +01:00
"winnow",
2023-02-26 22:01:15 +01:00
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"pin-project",
"pin-project-lite 0.2.9",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-08-01 02:17:59 +02:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
2022-10-16 22:20:01 +02:00
version = "0.3.2"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2022-08-01 02:17:59 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "tower-service"
2022-07-09 21:43:47 +02:00
version = "0.3.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 21:43:47 +02:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2020-09-16 02:11:49 +02:00
[[package]]
name = "tracing"
2022-10-26 17:51:27 +02:00
version = "0.1.37"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
"log",
"pin-project-lite 0.2.9",
"tracing-attributes",
2020-09-16 02:11:49 +02:00
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-05-22 13:47:21 +02:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "tracing-core"
2023-05-22 13:47:21 +02:00
version = "0.1.31"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2020-09-16 02:11:49 +02:00
dependencies = [
"once_cell",
2020-09-16 02:11:49 +02:00
]
[[package]]
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
name = "tracing-futures"
2021-10-07 00:56:44 +02:00
version = "0.2.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"pin-project",
2022-12-30 17:23:24 +01:00
"tokio 0.1.22",
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"tracing",
2020-09-16 02:11:49 +02:00
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "trust-dns-proto"
version = "0.21.2"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d"
2021-10-06 23:42:44 +02:00
dependencies = [
"async-trait",
"cfg-if 1.0.0",
"data-encoding",
"enum-as-inner",
"futures-channel",
"futures-io",
"futures-util",
2022-09-11 00:07:55 +02:00
"idna 0.2.3",
2021-10-06 23:42:44 +02:00
"ipnet",
"lazy_static",
"log",
"rand 0.8.5",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2021-10-06 23:42:44 +02:00
"thiserror",
"tinyvec",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2020-09-16 02:11:49 +02:00
"url",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "trust-dns-resolver"
version = "0.21.2"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558"
2021-10-06 23:42:44 +02:00
dependencies = [
"cfg-if 1.0.0",
"futures-util",
"ipconfig",
"lazy_static",
"log",
"lru-cache",
"parking_lot 0.12.1",
2021-10-06 23:42:44 +02:00
"resolv-conf",
2022-12-30 17:23:24 +01:00
"smallvec 1.10.0",
2021-10-06 23:42:44 +02:00
"thiserror",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-02-18 02:44:53 +01:00
"trust-dns-proto",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "try-lock"
2023-01-07 16:23:31 +01:00
version = "0.2.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 16:23:31 +01:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2020-09-16 02:11:49 +02:00
[[package]]
name = "twox-hash"
version = "1.6.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"cfg-if 1.0.0",
"rand 0.8.5",
2022-07-10 00:11:36 +02:00
"static_assertions",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "type-map"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46"
dependencies = [
"rustc-hash",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "typed-builder"
version = "0.10.0"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c"
2021-10-06 23:42:44 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "typenum"
2022-12-11 16:25:15 +01:00
version = "1.16.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2020-09-16 02:11:49 +02:00
[[package]]
name = "ucd-trie"
2022-09-11 00:07:55 +02:00
version = "0.1.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2020-09-16 02:11:49 +02:00
2022-01-27 03:58:13 +01:00
[[package]]
name = "uncased"
2023-05-22 13:47:21 +02:00
version = "0.9.9"
2022-01-27 03:58:13 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "9b9bc53168a4be7402ab86c3aad243a84dd7381d09be0eddc81280c1da95ca68"
2022-01-27 03:58:13 +01:00
dependencies = [
2022-02-18 02:44:53 +01:00
"version_check",
2022-01-27 03:58:13 +01:00
]
2020-09-16 02:11:49 +02:00
[[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-langid"
2022-10-26 17:51:27 +02:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f"
dependencies = [
"unic-langid-impl",
"unic-langid-macros",
]
[[package]]
name = "unic-langid-impl"
2022-10-26 17:51:27 +02:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff"
dependencies = [
"tinystr",
]
[[package]]
name = "unic-langid-macros"
2022-10-26 17:51:27 +02:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe"
dependencies = [
"proc-macro-hack",
"tinystr",
"unic-langid-impl",
"unic-langid-macros-impl",
]
[[package]]
name = "unic-langid-macros-impl"
2022-10-26 17:51:27 +02:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8"
dependencies = [
"proc-macro-hack",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
"unic-langid-impl",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "unic-segment"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
dependencies = [
"unic-ucd-segment",
]
[[package]]
name = "unic-ucd-segment"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
dependencies = [
"unic-char-property",
"unic-char-range",
"unic-ucd-version",
]
[[package]]
name = "unic-ucd-version"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
dependencies = [
"unic-common",
]
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
2022-02-18 02:44:53 +01:00
"version_check",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "unicode-bidi"
2023-05-22 13:47:21 +02:00
version = "0.3.13"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2020-09-16 02:11:49 +02:00
2022-10-26 17:51:27 +02:00
[[package]]
name = "unicode-ident"
2023-03-14 03:36:22 +01:00
version = "1.0.8"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-10-26 17:51:27 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "unicode-normalization"
2022-10-16 22:20:01 +02:00
version = "0.1.22"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"tinyvec",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "unicode-width"
2022-10-16 22:20:01 +02:00
version = "0.1.10"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2020-09-16 02:11:49 +02:00
[[package]]
name = "unicode-xid"
2022-10-16 22:20:01 +02:00
version = "0.2.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 22:20:01 +02:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2020-09-16 02:11:49 +02:00
[[package]]
name = "universal-hash"
2023-05-22 13:47:21 +02:00
version = "0.5.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 22:20:01 +02:00
"crypto-common",
2022-01-31 03:45:53 +01:00
"subtle",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "unix-socket"
version = "1.0.0"
dependencies = [
2022-02-18 02:44:53 +01:00
"actix-web",
2022-10-26 17:51:27 +02:00
"env_logger",
2023-03-14 04:11:49 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
2021-04-26 13:32:32 +02:00
[[package]]
name = "unreachable"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
dependencies = [
"void",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "ureq"
version = "1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b8b063c2d59218ae09f22b53c42eaad0d53516457905f5235ca4bc9e99daa71"
dependencies = [
"base64 0.13.1",
"chunked_transfer",
"cookie 0.14.4",
"cookie_store",
"log",
"once_cell",
"qstring",
"rustls 0.19.1",
"url",
"webpki 0.21.4",
"webpki-roots 0.21.1",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "url"
2022-09-11 00:07:55 +02:00
version = "2.3.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2020-09-16 02:11:49 +02:00
dependencies = [
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
"form_urlencoded",
2022-09-11 00:07:55 +02:00
"idna 0.3.0",
2020-09-16 02:11:49 +02:00
"percent-encoding",
]
2022-08-01 02:17:59 +02:00
[[package]]
name = "urlencoding"
2022-09-11 00:07:55 +02:00
version = "2.1.2"
2022-08-01 02:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
2022-08-01 02:17:59 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "utf-8"
2021-10-07 00:56:44 +02:00
version = "0.7.6"
2021-03-03 15:37:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2021-03-03 15:37:17 +01:00
2023-05-22 13:47:21 +02:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2020-09-16 02:11:49 +02:00
[[package]]
name = "uuid"
2021-10-06 23:42:44 +02:00
version = "0.8.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-06 23:42:44 +02:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2020-09-16 02:11:49 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
2022-12-30 17:23:24 +01:00
"serde",
2020-09-16 02:11:49 +02:00
]
2022-07-10 00:39:21 +02:00
[[package]]
name = "uuid"
2023-05-22 13:47:21 +02:00
version = "1.3.3"
2022-07-10 00:39:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
2022-07-10 00:39:21 +02:00
dependencies = [
2023-05-22 13:47:21 +02:00
"getrandom 0.2.9",
2022-08-01 00:51:08 +02:00
"serde",
2022-07-10 00:39:21 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "v_eval"
version = "0.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dd8b599d797eb038d0dde9a3860aacb6bbba3bffa4ac64f807c8673820cc9d9"
2020-09-16 02:11:49 +02:00
dependencies = [
"regex",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
2021-03-03 17:38:53 +01:00
[[package]]
name = "v_htmlescape"
2022-09-11 00:07:55 +02:00
version = "0.15.8"
2021-03-03 17:38:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c"
2021-03-03 17:38:53 +01:00
dependencies = [
2022-09-11 00:07:55 +02:00
"buf-min",
2021-03-03 17:38:53 +01:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "validator"
2022-10-26 17:51:27 +02:00
version = "0.16.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "32ad5bf234c7d3ad1042e5252b7eddb2c4669ee23f32c7dd0e9b7705f07ef591"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-09-11 00:07:55 +02:00
"idna 0.2.3",
2020-09-16 02:11:49 +02:00
"lazy_static",
"regex",
"serde",
2020-09-16 02:11:49 +02:00
"serde_derive",
"serde_json",
"url",
2022-07-09 23:54:51 +02:00
"validator_derive",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "validator_derive"
2022-10-26 17:51:27 +02:00
version = "0.16.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "bc44ca3088bb3ba384d9aecf40c6a23a676ce23e09bdaca2073d99c207f864af"
2020-09-16 02:11:49 +02:00
dependencies = [
"if_chain",
"lazy_static",
2022-02-02 02:51:25 +01:00
"proc-macro-error",
"proc-macro2",
"quote",
2020-09-16 02:11:49 +02:00
"regex",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2022-02-02 02:51:25 +01:00
"validator_types",
]
[[package]]
name = "validator_types"
2022-10-26 17:51:27 +02:00
version = "0.16.0"
2022-02-02 02:51:25 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-26 17:51:27 +02:00
checksum = "111abfe30072511849c5910134e8baf8dc05de4c0e5903d681cbd5c9c4d611e3"
2022-02-02 02:51:25 +01:00
dependencies = [
"proc-macro2",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
]
[[package]]
2021-10-07 00:56:44 +02:00
name = "vcpkg"
version = "0.2.15"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-09-16 02:11:49 +02:00
[[package]]
name = "version_check"
2022-01-27 03:58:13 +01:00
version = "0.9.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 03:58:13 +01:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-09-16 02:11:49 +02:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "vsimd"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2020-09-16 02:11:49 +02:00
[[package]]
name = "walkdir"
2023-05-22 13:47:21 +02:00
version = "2.3.3"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
2020-09-16 02:11:49 +02:00
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
2022-07-09 21:43:47 +02:00
version = "0.10.0+wasi-snapshot-preview1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-09 21:43:47 +02:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2020-09-16 02:11:49 +02:00
2022-03-15 18:32:27 +01:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-09-16 02:11:49 +02:00
[[package]]
name = "wasm-bindgen"
2023-05-22 13:47:21 +02:00
version = "0.2.86"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-05-22 13:47:21 +02:00
version = "0.2.86"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb"
2020-09-16 02:11:49 +02:00
dependencies = [
"bumpalo",
"log",
2022-08-05 20:43:46 +02:00
"once_cell",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-05-22 13:47:21 +02:00
version = "0.4.36"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e"
2020-09-16 02:11:49 +02:00
dependencies = [
2021-10-07 00:56:44 +02:00
"cfg-if 1.0.0",
2020-09-16 02:11:49 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-05-22 13:47:21 +02:00
version = "0.2.86"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258"
2020-09-16 02:11:49 +02:00
dependencies = [
"quote",
2020-09-16 02:11:49 +02:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-05-22 13:47:21 +02:00
version = "0.2.86"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 2.0.16",
2020-09-16 02:11:49 +02:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-05-22 13:47:21 +02:00
version = "0.2.86"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93"
2023-02-26 22:01:15 +01:00
[[package]]
name = "wasm-streams"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
Update `tiny_template` example and deps (#388) * Update actix crates in tiny_template example * Run `cargo update` Updating crates.io index Updating git repository `https://github.com/bcmyers/argonautica` Updating actix-cors v0.5.0 -> v0.5.3 Updating actix-http v2.1.0 -> v2.2.0 Updating actix-web v3.2.0 -> v3.3.1 Updating addr2line v0.13.0 -> v0.14.0 Updating aes v0.4.0 -> v0.6.0 Updating aes-gcm v0.6.0 -> v0.8.0 Updating aes-soft v0.4.0 -> v0.6.4 Updating aesni v0.7.0 -> v0.10.0 Updating ahash v0.3.8 -> v0.4.6 Updating aho-corasick v0.7.14 -> v0.7.15 Updating anyhow v1.0.33 -> v1.0.34 Removing arc-swap v0.4.7 Updating arrayvec v0.5.1 -> v0.5.2 Updating async-executor v1.3.0 -> v1.4.0 Updating async-global-executor v1.3.0 -> v1.4.3 Updating async-graphql v2.0.0 -> v2.1.5 Updating async-graphql-actix-web v2.0.0 -> v2.1.5 Updating async-graphql-derive v2.0.0 -> v2.1.4 Updating async-graphql-parser v2.0.0 -> v2.1.2 Updating async-graphql-value v2.0.0 -> v2.0.5 Updating async-io v1.1.10 -> v1.3.0 Updating async-std v1.6.5 -> v1.7.0 Updating async-task v4.0.2 -> v4.0.3 Updating async-trait v0.1.41 -> v0.1.42 Updating awc v2.0.0 -> v2.0.3 Updating backtrace v0.3.53 -> v0.3.55 Updating base-x v0.2.6 -> v0.2.8 Updating blake2b_simd v0.5.10 -> v0.5.11 Removing block-cipher v0.7.1 Updating bstr v0.2.13 -> v0.2.14 Updating cc v1.0.61 -> v1.0.65 Adding cipher v0.2.5 Updating combine v4.3.2 -> v4.4.0 Adding console_error_panic_hook v0.1.6 Updating const_fn v0.4.2 -> v0.4.3 Updating cookie v0.14.2 -> v0.14.3 Updating core-foundation v0.7.0 -> v0.9.1 Updating core-foundation-sys v0.7.0 -> v0.8.2 Updating crc32fast v1.2.0 -> v1.2.1 Adding crossbeam-utils v0.8.1 Removing crypto-mac v0.8.0 Adding crypto-mac v0.9.1 Adding crypto-mac v0.10.0 Adding ctr v0.6.0 Updating derive_utils v0.10.0 -> v0.11.0 Updating encoding_rs v0.8.24 -> v0.8.26 Updating env_logger v0.8.1 -> v0.8.2 Updating flate2 v1.0.18 -> v1.0.19 Adding form_urlencoded v1.0.0 Updating futures v0.3.6 -> v0.3.8 Updating futures-executor v0.3.6 -> v0.3.8 Updating futures-lite v1.11.1 -> v1.11.2 Updating gimli v0.22.0 -> v0.23.0 Updating globset v0.4.5 -> v0.4.6 Updating h2 v0.2.6 -> v0.2.7 Updating handlebars v3.5.0 -> v3.5.1 Removing hashbrown v0.8.2 Updating hkdf v0.9.0 -> v0.10.0 Removing hmac v0.8.1 Adding hmac v0.9.0 Adding hmac v0.10.1 Updating hyper v0.13.8 -> v0.13.9 Updating ignore v0.4.16 -> v0.4.17 Updating instant v0.1.7 -> v0.1.9 Updating io-enum v0.2.3 -> v0.2.4 Removing itertools v0.9.0 Updating libc v0.2.79 -> v0.2.80 Updating lock_api v0.4.1 -> v0.4.2 Updating lru v0.6.0 -> v0.6.1 Updating memchr v2.3.3 -> v2.3.4 Removing miow v0.2.1 Removing miow v0.3.5 Adding miow v0.2.2 Adding miow v0.3.6 Updating native-tls v0.2.4 -> v0.2.6 Updating net2 v0.2.35 -> v0.2.36 Updating num-integer v0.1.43 -> v0.1.44 Updating num-traits v0.2.12 -> v0.2.14 Updating object v0.21.1 -> v0.22.0 Updating once_cell v1.4.1 -> v1.5.2 Updating onig v6.1.0 -> v6.1.1 Updating onig_sys v69.5.1 -> v69.6.0 Updating parking_lot v0.11.0 -> v0.11.1 Updating pin-project v1.0.1 -> v1.0.2 Updating pin-project-internal v1.0.1 -> v1.0.2 Removing pin-project-lite v0.1.10 Adding pin-project-lite v0.1.11 Adding pin-project-lite v0.2.0 Updating pkg-config v0.3.18 -> v0.3.19 Updating polling v2.0.1 -> v2.0.2 Updating polyval v0.4.1 -> v0.4.2 Updating postgres-protocol v0.5.2 -> v0.5.3 Updating postgres-types v0.1.2 -> v0.1.3 Updating ppv-lite86 v0.2.9 -> v0.2.10 Updating redis-async v0.6.3 -> v0.6.6 Updating regex v1.4.0 -> v1.4.2 Updating regex-syntax v0.6.19 -> v0.6.21 Updating reqwest v0.10.8 -> v0.10.9 Updating resolv-conf v0.6.3 -> v0.7.0 Updating ring v0.16.15 -> v0.16.18 Updating rust-argon2 v0.8.2 -> v0.8.3 Updating rustc-demangle v0.1.17 -> v0.1.18 Adding scoped-tls v1.0.0 Updating security-framework v0.4.4 -> v2.0.0 Updating security-framework-sys v0.4.3 -> v2.0.0 Updating serde v1.0.116 -> v1.0.117 Updating serde_derive v1.0.116 -> v1.0.117 Updating serde_urlencoded v0.6.1 -> v0.7.0 Updating sha-1 v0.9.1 -> v0.9.2 Updating sha2 v0.9.1 -> v0.9.2 Updating signal-hook-registry v1.2.1 -> v1.2.2 Updating smallvec v1.4.2 -> v1.5.0 Updating socket2 v0.3.15 -> v0.3.17 Adding spin v0.6.0 Updating standback v0.2.11 -> v0.2.13 Updating string_cache v0.8.0 -> v0.8.1 Updating syn v1.0.44 -> v1.0.53 Updating termcolor v1.1.0 -> v1.1.2 Updating terminal_size v0.1.13 -> v0.1.15 Updating thiserror v1.0.21 -> v1.0.22 Updating thiserror-impl v1.0.21 -> v1.0.22 Updating time v0.2.22 -> v0.2.23 Removing tinyvec v0.3.4 Removing tinyvec v1.0.1 Adding tinyvec v1.1.0 Updating tokio v0.2.22 -> v0.2.23 Updating tokio-macros v0.2.5 -> v0.2.6 Updating tracing v0.1.21 -> v0.1.22 Adding tracing-futures v0.2.4 Updating trust-dns-proto v0.19.5 -> v0.19.6 Updating trust-dns-resolver v0.19.5 -> v0.19.6 Updating twox-hash v1.5.0 -> v1.6.0 Updating unicode-normalization v0.1.13 -> v0.1.16 Updating unicode-segmentation v1.6.0 -> v1.7.1 Updating url v2.1.1 -> v2.2.0 Updating v_escape v0.14.0 -> v0.14.1 Adding wasm-bindgen-test v0.3.18 Adding wasm-bindgen-test-macro v0.3.18 Updating wepoll-sys v3.0.0 -> v3.0.1
2020-11-30 09:54:00 +01:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "web-sys"
2023-05-22 13:47:21 +02:00
version = "0.3.63"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2"
2020-09-16 02:11:49 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
2021-10-07 00:56:44 +02:00
version = "0.21.4"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
2020-09-16 02:11:49 +02:00
dependencies = [
"ring",
"untrusted",
]
2022-01-31 03:45:53 +01:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
2021-10-06 23:42:44 +02:00
[[package]]
name = "webpki-roots"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
dependencies = [
2022-01-31 03:45:53 +01:00
"webpki 0.21.4",
]
[[package]]
name = "webpki-roots"
2022-12-11 16:25:15 +01:00
version = "0.22.6"
2022-01-31 03:45:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2022-01-31 03:45:53 +01:00
dependencies = [
"webpki 0.22.0",
2021-10-06 23:42:44 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "websocket"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-files",
"actix-web",
"actix-web-actors",
"awc",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:15:16 +01:00
"futures-util",
2022-02-18 02:44:53 +01:00
"log",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-02-18 02:44:53 +01:00
"tokio-stream",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "websocket-autobahn"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-02-18 02:44:53 +01:00
"actix-web",
"actix-web-actors",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-18 02:44:53 +01:00
"log",
2020-09-16 02:11:49 +02:00
]
2022-07-11 21:19:29 +02:00
[[package]]
name = "websocket-chat-actorless-example"
version = "1.0.0"
dependencies = [
"actix-files",
"actix-web",
"actix-ws",
"awc",
"derive_more",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-07-11 21:19:29 +02:00
"futures-util",
"log",
"rand 0.8.5",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-07-11 21:19:29 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "websocket-chat-broker"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2020-09-16 02:11:49 +02:00
"actix-broker",
2022-02-18 02:44:53 +01:00
"actix-files",
"actix-web",
"actix-web-actors",
2022-10-26 17:51:27 +02:00
"env_logger",
2020-09-16 02:11:49 +02:00
"log",
2022-02-18 02:44:53 +01:00
"rand 0.8.5",
2020-09-16 02:11:49 +02:00
]
2022-07-11 02:44:46 +02:00
[[package]]
name = "websocket-echo-actorless-example"
version = "1.0.0"
dependencies = [
"actix-files",
"actix-web",
"actix-ws",
"awc",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-07-11 02:44:46 +02:00
"futures-util",
"log",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
2022-07-11 02:44:46 +02:00
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "websocket-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-02-18 02:44:53 +01:00
"actix-files",
"actix-web",
"actix-web-actors",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-02-18 02:44:53 +01:00
"log",
"rand 0.8.5",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
]
[[package]]
name = "websocket-tcp-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-10-16 20:14:40 +02:00
"actix",
2022-03-04 17:28:40 +01:00
"actix-codec",
2022-02-18 02:44:53 +01:00
"actix-files",
"actix-web",
"actix-web-actors",
2020-09-16 02:11:49 +02:00
"byteorder",
2023-02-26 22:01:15 +01:00
"bytes 1.4.0",
2022-10-26 17:51:27 +02:00
"env_logger",
2022-03-06 01:15:16 +01:00
"futures-util",
"log",
"rand 0.8.5",
"serde",
2020-09-16 02:11:49 +02:00
"serde_json",
2023-05-22 13:47:21 +02:00
"tokio 1.28.1",
"tokio-stream",
2023-05-22 13:47:21 +02:00
"tokio-util 0.7.8",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "widestring"
version = "0.5.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983"
2020-09-16 02:11:49 +02:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
"windows-targets 0.48.0",
]
2022-10-26 17:51:27 +02:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-05-22 13:47:21 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2022-10-26 17:51:27 +02:00
]
[[package]]
2023-02-26 22:01:15 +01:00
name = "windows-sys"
version = "0.45.0"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-05-22 13:47:21 +02:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
2023-02-26 22:01:15 +01:00
]
2022-10-26 17:51:27 +02:00
[[package]]
2023-02-26 22:01:15 +01:00
name = "windows-targets"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2023-02-26 22:01:15 +01:00
dependencies = [
2023-05-22 13:47:21 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
2023-02-26 22:01:15 +01:00
]
2022-10-26 17:51:27 +02:00
[[package]]
2023-02-26 22:01:15 +01:00
name = "windows_aarch64_gnullvm"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-10-26 17:51:27 +02:00
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
2023-02-26 22:01:15 +01:00
name = "windows_aarch64_msvc"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-10-26 17:51:27 +02:00
[[package]]
name = "windows_i686_gnu"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-10-26 17:51:27 +02:00
[[package]]
name = "windows_i686_msvc"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-10-26 17:51:27 +02:00
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-10-26 17:51:27 +02:00
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2022-10-26 17:51:27 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2020-09-16 02:11:49 +02:00
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-10-26 17:51:27 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-14 03:36:22 +01:00
version = "0.42.2"
2022-10-26 17:51:27 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-14 03:36:22 +01:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-05-22 13:47:21 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2023-03-14 03:36:22 +01:00
[[package]]
name = "winnow"
2023-05-22 13:47:21 +02:00
version = "0.4.6"
2023-03-14 03:36:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699"
2023-03-14 03:36:22 +01:00
dependencies = [
"memchr",
]
2022-10-26 17:51:27 +02:00
2020-09-16 02:11:49 +02:00
[[package]]
name = "winreg"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
dependencies = [
"winapi 0.3.9",
]
2022-03-15 18:32:27 +01:00
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi 0.3.9",
]
2020-09-16 02:11:49 +02:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2022-07-10 00:11:36 +02:00
[[package]]
name = "wyz"
2022-12-11 16:25:15 +01:00
version = "0.5.1"
2022-07-10 00:11:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:25:15 +01:00
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2022-07-10 00:11:36 +02:00
dependencies = [
"tap",
]
2020-09-16 02:11:49 +02:00
[[package]]
2022-08-01 02:17:59 +02:00
name = "xmlparser"
2022-12-11 16:31:32 +01:00
version = "0.13.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-11 16:31:32 +01:00
checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd"
2020-09-16 02:11:49 +02:00
[[package]]
name = "yaml-rust"
2021-10-07 00:56:44 +02:00
version = "0.4.5"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 00:56:44 +02:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2020-09-16 02:11:49 +02:00
dependencies = [
"linked-hash-map",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2020-09-16 02:11:49 +02:00
[[package]]
name = "yansi-term"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "yarte"
2022-09-11 00:07:55 +02:00
version = "0.15.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "dfce1df93f3b16e5272221a559e60bbbaaa71dbc042a43996d223e51a690aab2"
2020-09-16 02:11:49 +02:00
dependencies = [
2022-02-18 02:44:53 +01:00
"buf-min",
2020-09-16 02:11:49 +02:00
"yarte_derive",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "yarte_codegen"
2023-02-26 22:01:15 +01:00
version = "0.15.7"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "4a79312078b97a195de91a8c1457c2e0d7abd97e6e605f3cdeb01b3c105d2cff"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
"yarte_dom",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
"yarte_hir",
"yarte_html",
]
[[package]]
name = "yarte_derive"
2022-09-11 00:07:55 +02:00
version = "0.15.6"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "b296edd7e1a81717b6f794baa2de8dfe89646050847161550b2d963b3ca6fe80"
2020-09-16 02:11:49 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
"yarte_codegen",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
"yarte_hir",
"yarte_parser",
]
[[package]]
name = "yarte_dom"
2022-09-11 00:07:55 +02:00
version = "0.15.1"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "333bb63a5c0abdfd635b0e3238e0308d6e7dd12787cef875c9272ae6cb114324"
2020-09-16 02:11:49 +02:00
dependencies = [
"markup5ever",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
"yarte_hir",
"yarte_html",
]
2021-03-03 17:38:53 +01:00
[[package]]
name = "yarte_helpers"
2023-02-26 22:01:15 +01:00
version = "0.15.8"
2021-03-03 17:38:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "e0d1076f8cee9541ea5ffbecd9102f751252c91f085e7d30a18a3ce805ebd3ee"
dependencies = [
2022-02-18 02:44:53 +01:00
"buf-min",
2022-10-16 20:14:40 +02:00
"dtoa",
2023-03-14 03:36:22 +01:00
"itoa 1.0.6",
2022-01-27 03:58:13 +01:00
"prettyplease",
"ryu",
"serde",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
"toml 0.5.11",
2022-02-18 02:44:53 +01:00
"v_htmlescape",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "yarte_hir"
2022-09-11 00:07:55 +02:00
version = "0.15.6"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "dee42d2f704a3b1d8bc111d47a705d1302a0943d85e4c230f4e8300ee0dde4a6"
2020-09-16 02:11:49 +02:00
dependencies = [
"derive_more",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
"v_eval",
2022-02-18 02:44:53 +01:00
"v_htmlescape",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
"yarte_parser",
]
[[package]]
name = "yarte_html"
2022-09-11 00:07:55 +02:00
version = "0.15.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "03e1fb0c85969cbe25b8a3031b278b484025882e20cadbc81735444c6e3d7613"
2020-09-16 02:11:49 +02:00
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
2020-09-16 02:11:49 +02:00
"yarte_parser",
]
[[package]]
name = "yarte_parser"
2022-09-11 00:07:55 +02:00
version = "0.15.2"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-11 00:07:55 +02:00
checksum = "538f72049cf7104e12d5c444048d112cb8fc788a31308afd912442a381ba860c"
2020-09-16 02:11:49 +02:00
dependencies = [
"annotate-snippets",
"derive_more",
"proc-macro2",
"quote",
"serde",
2023-05-22 13:47:21 +02:00
"syn 1.0.109",
"unicode-xid",
"yarte_helpers",
2020-09-16 02:11:49 +02:00
]
[[package]]
name = "zeroize"
2023-05-22 13:47:21 +02:00
version = "1.6.0"
2020-09-16 02:11:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
2021-10-06 23:42:44 +02:00
[[package]]
name = "zstd"
2023-02-26 22:01:15 +01:00
version = "0.12.3+zstd.1.5.2"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 22:01:15 +01:00
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
2021-10-06 23:42:44 +02:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2023-05-22 13:47:21 +02:00
version = "6.0.5+zstd.1.5.4"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
2021-10-06 23:42:44 +02:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2023-05-22 13:47:21 +02:00
version = "2.0.8+zstd.1.5.5"
2021-10-06 23:42:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-22 13:47:21 +02:00
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
2021-10-06 23:42:44 +02:00
dependencies = [
"cc",
"libc",
2023-02-26 22:01:15 +01:00
"pkg-config",
2021-10-06 23:42:44 +02:00
]