17 lines
544 B
TOML
17 lines
544 B
TOML
|
[package]
|
||
|
name = "website"
|
||
|
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.5.7", features = ["http2"] }
|
||
|
color-eyre = "0.6.1"
|
||
|
hyper = { version = "0.14.19", features = ["full"] }
|
||
|
tokio = { version = "1.19.2", features = ["full"] }
|
||
|
tower = { version = "0.4.12", features = ["full"] }
|
||
|
tower-http = { version = "0.3.4", features = ["full"] }
|
||
|
tracing = "0.1.35"
|
||
|
tracing-subscriber = { version = "0.3.11", features = ["fmt"] }
|