url_shortener/Cargo.toml

13 lines
383 B
TOML
Raw Permalink Normal View History

2023-11-20 16:59:07 +01:00
[package]
name = "url_shortener"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.20", features = ["http2"] }
ini = "1.3.0"
redis = { version = "0.23.3", features = ["r2d2", "ahash", "connection-manager"] }
tokio = { version = "1.34.0", features = ["full"] }