2018-04-13 21:32:15 +02:00
|
|
|
[workspace]
|
2023-10-29 03:32:37 +01:00
|
|
|
resolver = "2"
|
2018-04-13 21:32:15 +02:00
|
|
|
members = [
|
2024-06-05 05:52:05 +02:00
|
|
|
"auth/casbin",
|
|
|
|
"auth/cookie-auth",
|
|
|
|
"auth/cookie-session",
|
|
|
|
"auth/redis-session",
|
|
|
|
"auth/simple-auth-server",
|
|
|
|
"background-jobs",
|
|
|
|
"basics/basics",
|
|
|
|
"basics/error-handling",
|
|
|
|
"basics/hello-world",
|
|
|
|
"basics/nested-routing",
|
|
|
|
"basics/state",
|
|
|
|
"basics/static-files",
|
|
|
|
"basics/todo",
|
|
|
|
"cors/backend",
|
|
|
|
"data-factory",
|
|
|
|
"databases/diesel",
|
|
|
|
"databases/mongodb",
|
|
|
|
"databases/mysql",
|
|
|
|
"databases/postgres",
|
|
|
|
"databases/redis",
|
|
|
|
"docker",
|
|
|
|
"forms/form",
|
|
|
|
"forms/multipart-s3",
|
|
|
|
"forms/multipart",
|
|
|
|
"graphql/async-graphql",
|
|
|
|
"graphql/juniper-advanced",
|
|
|
|
"graphql/juniper",
|
|
|
|
"guards",
|
|
|
|
"http-proxy",
|
|
|
|
"https-tls/acme-letsencrypt",
|
|
|
|
"https-tls/awc-https",
|
|
|
|
"https-tls/cert-watch",
|
|
|
|
"https-tls/openssl",
|
|
|
|
"https-tls/rustls-client-cert",
|
|
|
|
"https-tls/rustls",
|
|
|
|
"json/json-decode-error",
|
|
|
|
"json/json-error",
|
|
|
|
"json/json-validation",
|
|
|
|
"json/json",
|
|
|
|
"json/jsonrpc",
|
|
|
|
"middleware/encrypted-payloads",
|
|
|
|
"middleware/http-to-https",
|
|
|
|
"middleware/rate-limit",
|
|
|
|
"middleware/request-extensions",
|
|
|
|
"middleware/various",
|
|
|
|
"protobuf",
|
|
|
|
"run-in-thread",
|
|
|
|
"server-sent-events",
|
|
|
|
"shutdown-server",
|
|
|
|
"templating/askama",
|
|
|
|
"templating/fluent",
|
|
|
|
"templating/handlebars",
|
|
|
|
"templating/minijinja",
|
|
|
|
"templating/sailfish",
|
|
|
|
"templating/tera",
|
|
|
|
"templating/tinytemplate",
|
|
|
|
"templating/yarte",
|
|
|
|
"tracing/mainmatter-workshop",
|
|
|
|
"unix-socket",
|
|
|
|
"websockets/autobahn",
|
|
|
|
"websockets/chat-actorless",
|
|
|
|
"websockets/chat-broker",
|
|
|
|
"websockets/chat-tcp",
|
|
|
|
"websockets/chat",
|
|
|
|
"websockets/echo-actorless",
|
|
|
|
"websockets/echo",
|
2018-04-13 21:32:15 +02:00
|
|
|
]
|
2024-07-07 03:01:13 +02:00
|
|
|
exclude = [
|
|
|
|
"databases/sqlite",
|
|
|
|
]
|
2022-12-21 15:49:28 +01:00
|
|
|
|
2023-09-11 01:50:09 +02:00
|
|
|
[workspace.package]
|
2023-10-29 03:32:37 +01:00
|
|
|
publish = false
|
2023-09-11 01:50:09 +02:00
|
|
|
edition = "2021"
|
2023-10-29 03:32:37 +01:00
|
|
|
rust-version = "1.72"
|
2023-09-11 01:50:09 +02:00
|
|
|
|
2022-12-21 15:49:28 +01:00
|
|
|
[workspace.dependencies]
|
|
|
|
actix = "0.13"
|
2023-02-26 22:01:15 +01:00
|
|
|
actix-broker = "0.4"
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-codec = "0.5"
|
2024-01-31 00:44:35 +01:00
|
|
|
actix-cors = "0.7"
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-files = "0.6"
|
2023-12-25 18:50:02 +01:00
|
|
|
actix-http = "3.5"
|
2024-01-31 00:44:35 +01:00
|
|
|
actix-identity = "0.7"
|
2024-07-07 01:59:16 +02:00
|
|
|
actix-multipart = "0.7"
|
2023-10-29 01:55:43 +02:00
|
|
|
actix-protobuf = "0.10"
|
2024-01-31 00:44:35 +01:00
|
|
|
actix-session = "0.9"
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-test = "0.1"
|
2024-05-25 04:53:55 +02:00
|
|
|
actix-tls = "3.4"
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-utils = "3"
|
2024-07-07 01:23:03 +02:00
|
|
|
actix-web = "4.7"
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-web-actors = "4.1"
|
2023-10-29 02:06:58 +02:00
|
|
|
actix-web-lab = "0.20"
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-ws = "0.2.5"
|
2023-08-29 19:28:12 +02:00
|
|
|
awc = "3.2"
|
2022-12-30 17:23:24 +01:00
|
|
|
|
2024-03-06 00:53:59 +01:00
|
|
|
chrono = { version = "0.4.30", features = ["serde"] }
|
2023-01-02 21:38:03 +01:00
|
|
|
derive_more = "0.99.7"
|
2023-10-29 02:17:49 +02:00
|
|
|
dotenvy = "0.15"
|
2024-01-31 00:44:35 +01:00
|
|
|
env_logger = "0.11"
|
2024-06-05 06:00:40 +02:00
|
|
|
eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
|
2024-02-06 03:50:23 +01:00
|
|
|
color-eyre = "0.6"
|
2024-06-05 06:00:40 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2022-12-30 17:25:40 +01:00
|
|
|
log = "0.4"
|
2023-11-29 03:43:16 +01:00
|
|
|
openssl = { version = "0.10.60", features = ["v110"] }
|
2024-07-07 02:42:16 +02:00
|
|
|
parking_lot = "0.12"
|
|
|
|
pin-project-lite = "0.2"
|
2023-01-02 21:35:37 +01:00
|
|
|
rand = "0.8"
|
2024-05-25 06:36:36 +02:00
|
|
|
rustls = "0.23"
|
|
|
|
rustls-pemfile = "2"
|
2023-01-02 21:35:11 +01:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2023-07-18 17:20:43 +02:00
|
|
|
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
|
2023-07-09 01:56:56 +02:00
|
|
|
tokio-util = "0.7.4"
|
2023-10-29 02:06:58 +02:00
|
|
|
tokio-stream = "0.1.1"
|
2024-06-05 05:52:05 +02:00
|
|
|
tracing = "0.1.30"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
2024-06-05 06:10:46 +02:00
|
|
|
uuid = { version = "1.6", features = ["v4", "v7", "serde"] }
|