2023-07-01 20:34:21 +02:00
|
|
|
[package]
|
|
|
|
|
name = "learn_axum"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
2023-11-12 14:11:13 +01:00
|
|
|
[lib]
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
name = "learn_axum"
|
|
|
|
|
|
2023-07-01 20:34:21 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-07 22:14:22 +02:00
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
2023-11-12 14:11:13 +01:00
|
|
|
hyper = { version = "0.14.27", features = ["full"] }
|
|
|
|
|
# # Serde / json
|
|
|
|
|
# serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
# serde_json = "1"
|
|
|
|
|
# serde_with = "3"
|
|
|
|
|
# # Axum
|
2023-10-07 22:14:22 +02:00
|
|
|
axum = { version = "0.6.20" }
|
2023-11-12 14:11:13 +01:00
|
|
|
# tower-http = { version = "0.4.4", features = ["fs"] }
|
|
|
|
|
# tower-cookies = "0.9"
|
|
|
|
|
# # Others
|
|
|
|
|
# lazy-regex = "3"
|
|
|
|
|
# async-trait = "0.1"
|
|
|
|
|
# strum_macros = "0.25"
|
|
|
|
|
# uuid = { version = "1", features = ["v4", "fast-rng"] }
|
2023-07-01 20:34:21 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-11-12 14:11:13 +01:00
|
|
|
reqwest = "0.11"
|