-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (42 loc) · 1.49 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
[package]
name = "axum-restful"
version = "0.5.0"
edition = "2021"
categories = ["web-programming::http-server", "asynchronous"]
description = "A restful framework based on axum and sea-orm."
keywords = ["axum", "sea-orm", "restful"]
authors = ["Gongzhengyang <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/gongzhengyang/axum-restful"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
awesome-operates = "0.1"
aide = { version = "0.13", features = ["redoc", "macros", "axum-extra-query", "axum"] }
anyhow = "1.0"
async-trait = "0.1"
axum = "0.7.1"
axum-core = "0.4"
axum-server = { version = "0.5", features = ["tls-rustls"] }
bytes = "1"
http = "1.0"
hyper = "1.0.1"
log = "0.4"
metrics = "0.21"
metrics-exporter-prometheus = "0.12"
mime_guess = "2"
paste = "1"
rcgen = "0.12"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream", "multipart"] }
rust-embed = { version = "8", features = ["compression", "debug-embed"] }
schemars = "0.8"
sea-orm = { version = "0.12", features = ["macros", "sqlx-postgres", "runtime-tokio-rustls", "tests-cfg", "mock"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
snafu = { version = "0.7", features = ["backtraces"] }
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.25"
tower = "0.4"
tower-http = {version = "0.5", features = ["full"]}
tower-service = "0.3.2"
tracing = "0.1"