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

119 lines
2.8 KiB
TOML
Raw Normal View History

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 = [
"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",
# "databases/sqlite",
"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
]
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
[workspace.dependencies]
actix = "0.13"
2023-02-26 22:01:15 +01:00
actix-broker = "0.4"
actix-codec = "0.5"
2024-01-31 00:44:35 +01:00
actix-cors = "0.7"
actix-files = "0.6"
actix-http = "3.5"
2024-01-31 00:44:35 +01:00
actix-identity = "0.7"
actix-multipart = "0.6"
actix-multipart-derive = "0.6"
2023-10-29 01:55:43 +02:00
actix-protobuf = "0.10"
2024-01-31 00:44:35 +01:00
actix-session = "0.9"
actix-test = "0.1"
2024-05-25 04:53:55 +02:00
actix-tls = "3.4"
actix-utils = "3"
2024-07-07 01:23:03 +02:00
actix-web = "4.7"
actix-web-actors = "4.1"
2023-10-29 02:06:58 +02:00
actix-web-lab = "0.20"
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"] }
log = "0.4"
openssl = { version = "0.10.60", features = ["v110"] }
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"
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"] }