19 lines
411 B
TOML
19 lines
411 B
TOML
[package]
|
|
name = "rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
poem = "1.3.13"
|
|
poem-openapi = { version = "1.3.13", features = [
|
|
"email",
|
|
"swagger-ui",
|
|
"rapidoc",
|
|
"redoc",
|
|
] }
|
|
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread"] }
|
|
tracing-subscriber = "0.3.9"
|
|
slab = "0.4.5"
|