* Update to axum-core 0.1 Together with the new 0.4 release of `axum` we made a new crate called [`axum-core`]. `axum-core` has a small API and is less likely to receive breaking changes. Therefore its recommended for libraries to depend on `axum-core` instead of `axum`. So this updates `maud` to use `axum-core`. Note this is a breaking change since `axum-core` requires `axum` 0.4. [`axum-core`]: https://crates.io/crates/axum-core * Update changelog link * fix test
23 lines
488 B
TOML
23 lines
488 B
TOML
[package]
|
|
name = "doctest"
|
|
version = "0.1.0"
|
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
actix-web = "3"
|
|
ammonia = "3"
|
|
maud = { path = "../maud", features = ["actix-web", "rocket", "tide", "axum"] }
|
|
pulldown-cmark = "0.8"
|
|
rocket = "0.4"
|
|
rouille = "3"
|
|
tide = "0.16"
|
|
tokio = { version = "1.9.0", features = ["rt", "macros", "rt-multi-thread"] }
|
|
axum = "0.4"
|
|
|
|
[dependencies.async-std]
|
|
version = "1.9.0"
|
|
features = ["attributes"]
|
|
|
|
[lib]
|
|
path = "lib.rs"
|