forked from poem-web/poem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.33 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
[workspace]
members = [
"poem-derive",
"poem",
"poem-openapi-derive",
"poem-openapi",
"poem-lambda",
"poem-grpc-build",
"poem-grpc",
]
[workspace.package]
authors = ["sunli <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/poem/"
homepage = "https://github.com/poem-web/poem"
repository = "https://github.com/poem-web/poem"
rust-version = "1.64"
[workspace.dependencies]
poem = { path = "poem", version = "1.3.57", default-features = false }
poem-derive = { path = "poem-derive", version = "1.3.57" }
poem-openapi-derive = { path = "poem-openapi-derive", version = "3.0.0" }
poem-grpc-build = { path = "poem-grpc-build", version = "0.2.20" }
proc-macro-crate = "1.1.0"
proc-macro2 = "1.0.29"
quote = "1.0.9"
syn = { version = "2.0" }
tokio = "1.17.0"
serde_json = "1.0.68"
serde = { version = "1.0.130", features = ["derive"] }
thiserror = "1.0.30"
regex = "1.5.5"
mime = "0.3.16"
tracing = "0.1.36"
chrono = { version = "0.4.19", default-features = false }
bytes = "1.1.0"
futures-util = "0.3.17"
tokio-stream = "0.1.8"
serde_yaml = "0.9"
quick-xml = { version = "0.29.0", features = ["serialize"] }
base64 = "0.21.0"
serde_urlencoded = "0.7.1"
# rustls, update together
hyper-rustls = { version = "0.24.0", default-features = false }
rustls = "0.21.0"
tokio-rustls = "0.24.0"