1
0
mirror of https://github.com/actix/examples synced 2025-01-22 14:05:55 +01:00
examples/Cargo.toml

125 lines
2.9 KiB
TOML
Raw Normal View History

2018-04-13 12:32:15 -07:00
[workspace]
2023-10-29 02:32:37 +00:00
resolver = "2"
2018-04-13 12:32:15 -07:00
members = [
"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 12:32:15 -07:00
]
2024-07-07 02:01:13 +01:00
exclude = [
"databases/sqlite",
]
2023-09-11 00:50:09 +01:00
[workspace.package]
2023-10-29 02:32:37 +00:00
publish = false
2023-09-11 00:50:09 +01:00
edition = "2021"
2023-10-29 02:32:37 +00:00
rust-version = "1.72"
2023-09-11 00:50:09 +01:00
[workspace.dependencies]
actix = "0.13"
2023-02-26 21:01:15 +00:00
actix-broker = "0.4"
actix-codec = "0.5"
2024-01-30 23:44:35 +00:00
actix-cors = "0.7"
actix-files = "0.6"
actix-http = "3.5"
2024-01-30 23:44:35 +00:00
actix-identity = "0.7"
2024-07-07 00:59:16 +01:00
actix-multipart = "0.7"
2024-07-20 07:45:32 +01:00
actix-protobuf = "0.11"
2024-08-07 01:51:55 +01:00
actix-session = "0.10"
actix-test = "0.1"
2024-05-25 03:53:55 +01:00
actix-tls = "3.4"
actix-utils = "3"
2024-09-11 10:06:01 -04:00
actix-web = "4.9"
actix-web-actors = "4.1"
2024-09-11 10:06:01 -04:00
actix-web-lab = "0.22"
2024-07-20 07:55:03 +01:00
actix-ws = "0.3"
2023-08-29 18:28:12 +01:00
awc = "3.2"
2022-12-30 16:23:24 +00:00
2024-03-05 23:53:59 +00:00
chrono = { version = "0.4.30", features = ["serde"] }
2023-01-02 20:38:03 +00:00
derive_more = "0.99.7"
2023-10-29 01:17:49 +01:00
dotenvy = "0.15"
2024-01-30 23:44:35 +00:00
env_logger = "0.11"
2024-06-05 05:00:40 +01:00
eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
2024-02-06 02:50:23 +00:00
color-eyre = "0.6"
2024-06-05 05:00:40 +01:00
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
openssl = { version = "0.10.60", features = ["v110"] }
2024-07-07 01:42:16 +01:00
parking_lot = "0.12"
pin-project-lite = "0.2"
2023-01-02 20:35:37 +00:00
rand = "0.8"
2024-12-28 20:25:06 +00:00
redis = { version = "0.27" }
2024-08-07 01:51:55 +01:00
reqwest = { version = "0.12", features = ["json", "stream"] }
2024-05-25 05:36:36 +01:00
rustls = "0.23"
rustls-pemfile = "2"
2023-01-02 20:35:11 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2024-07-07 02:51:12 +01:00
time = "0.3"
2023-07-18 16:20:43 +01:00
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
2023-07-09 00:56:56 +01:00
tokio-util = "0.7.4"
2023-10-29 01:06:58 +01:00
tokio-stream = "0.1.1"
tracing = "0.1.30"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
2024-06-05 05:10:46 +01:00
uuid = { version = "1.6", features = ["v4", "v7", "serde"] }