forked from salvo-rs/salvo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
105 lines (103 loc) · 3.07 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
[workspace]
members = ["crates/*", "examples/*"]
exclude = ["crates/proxy", "examples/acme-http01", "examples/work-with-tower", "examples/with-listenfd", "examples/acme-tls-alpn01", "examples/ws-chat-with-salvo-websocket", "examples/proxy-react-app", "examples/proxy-simple", "examples/proxy-websocket"]
[workspace.package]
version = "0.37.2"
authors = ["Chrislearn Young <[email protected]>"]
edition = "2021"
description = """
Salvo is a powerful and simplest web server framework in Rust world.
"""
homepage = "https://salvo.rs"
repository = "https://github.com/salvo-rs/salvo"
documentation = "https://docs.rs/salvo/"
readme = "./README.md"
keywords = ["http", "async", "web", "framework", "server"]
license = "MIT OR Apache-2.0"
categories = ["web-programming::http-server", "web-programming::websocket", "network-programming", "asynchronous"]
[workspace.dependencies]
aead = "0.5"
aes-gcm = "0.10"
anyhow = "1"
async-compression = "0.3"
async-session = "3"
async-trait = "0.1"
base64 = "0.13"
bytes = "1"
bcrypt = "0.13"
cookie = "0.16"
chacha20poly1305 = "0.10"
cruet = "0.13"
encoding_rs = "0.8"
enumflags2 = "0.7"
etag = "3"
fastrand = "1"
form_urlencoded = "1"
futures-util = "0.3"
headers = "0.3"
http = "0.2"
http-body-util = "0.1.0-rc.1" #{ git = "https://github.com/hyperium/http-body", rev = "0e20ca9" }
hmac = "0.12"
hex = "0.4"
hyper = "1.0.0-rc.1" #{ git = "https://github.com/hyperium/hyper.git", rev="426e1e8" }
hyper-util = { git = "https://github.com/hyperium/hyper-util.git", rev="0e0591e" }
hyper-rustls = "0.23"
jsonwebtoken = "8"
mime = "0.3"
mime_guess = "2"
moka = "0.9"
multer = "2"
multimap = "0.8"
native-tls = "0.2"
once_cell = "=1.14"
openssl = "0.10"
path-slash = "0.2"
parking_lot = "0.12"
percent-encoding = "2"
pin-project = "1"
quinn = { version = "0.8"}
quinn-proto = { version = "0.9"}
rand = "0.8"
rcgen = "0.10"
regex = "1"
ring = "0.16"
reqwest = "0.11"
rustls = "0.20"
rustls-pemfile = "1.0"
rust-embed = "6"
salvo_macros = { version = "0.37.2", path = "./crates/macros" }
salvo_core = { version = "0.37.2", path = "./crates/core" }
salvo_extra = { version = "0.37.2", path = "./crates/extra" }
salvo-http3 = { version = "0.37.2", path = "./crates/http3" }
salvo-quinn = { version = "0.37.2", path = "./crates/quinn" }
salvo-cache = { version = "0.37.2", path = "./crates/cache" }
salvo-cors = { version = "0.37.2", path = "./crates/cors" }
salvo-csrf = { version = "0.37.2", path = "./crates/csrf" }
salvo-flash = { version = "0.37.2", path = "./crates/flash" }
salvo-rate-limiter = { version = "0.37.2", path = "./crates/rate-limiter" }
salvo-session = { version = "0.37.2", path = "./crates/session" }
salvo-static = { version = "0.37.2", path = "./crates/static" }
serde = "1"
serde_json = "1"
serde_urlencoded = "0.7"
sha2 = "0.10"
syn = "1"
tempfile = "3"
textnonce = "1"
thiserror = "1"
time = "0.3"
tokio = "1"
tokio-native-tls = "0.3"
tokio-rustls = "0.23"
tokio-openssl = "0.6"
tokio-stream = "0.1"
tokio-util = "0.7"
tokio-tungstenite = "0.17"
tracing = "0.1"
tracing-test = "0.2.1"
url = "2"
darling = "0.14"
proc-macro-crate = "1"
proc-macro2 = "1"
quote = "1"
x509-parser = "0.14"