-
-
Notifications
You must be signed in to change notification settings - Fork 808
/
Cargo.toml
123 lines (120 loc) · 2.9 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[workspace]
resolver = "2"
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",
]
exclude = [
"databases/sqlite",
]
[workspace.package]
publish = false
edition = "2021"
rust-version = "1.72"
[workspace.dependencies]
actix = "0.13"
actix-broker = "0.4"
actix-codec = "0.5"
actix-cors = "0.7"
actix-files = "0.6"
actix-http = "3.5"
actix-identity = "0.7"
actix-multipart = "0.7"
actix-protobuf = "0.11"
actix-session = "0.10"
actix-test = "0.1"
actix-tls = "3.4"
actix-utils = "3"
actix-web = "4.9"
actix-web-actors = "4.1"
actix-web-lab = "0.22"
actix-ws = "0.3"
awc = "3.2"
chrono = { version = "0.4.30", features = ["serde"] }
derive_more = "0.99.7"
dotenvy = "0.15"
env_logger = "0.11"
eyre = { version = "0.6", default-features = false, features = ["auto-install", "track-caller"] }
color-eyre = "0.6"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log = "0.4"
openssl = { version = "0.10.60", features = ["v110"] }
parking_lot = "0.12"
pin-project-lite = "0.2"
rand = "0.8"
reqwest = { version = "0.12", features = ["json", "stream"] }
rustls = "0.23"
rustls-pemfile = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = "0.3"
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
tokio-util = "0.7.4"
tokio-stream = "0.1.1"
tracing = "0.1.30"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
uuid = { version = "1.6", features = ["v4", "v7", "serde"] }