* feat: Add support for Submillisecond web framework Adds support for Submillisecond, a Lunatic web framework * fix: Add submillisecond as doctest feature flag - adds submillisecond as a feature flag for maud for doctests * fix: Update formatting for submillisecond - fix formatting to match rustfmt for submillisecond_support * Add missing line break --------- Co-authored-by: Chris Wong <lambda.fairy@gmail.com>
25 lines
626 B
TOML
25 lines
626 B
TOML
[package]
|
|
name = "doctest"
|
|
version = "0.1.0"
|
|
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4.0.0-rc.2", default-features = false, features = ["macros"] }
|
|
ammonia = "3"
|
|
maud = { path = "../maud", features = ["actix-web", "rocket", "tide", "axum", "warp", "submillisecond"] }
|
|
pulldown-cmark = "0.8"
|
|
rocket = "0.5"
|
|
rouille = "3"
|
|
submillisecond = "0.4.1"
|
|
tide = "0.16"
|
|
tokio = { version = "1.9.0", features = ["rt", "macros", "rt-multi-thread"] }
|
|
axum = "0.7"
|
|
warp = "0.3.6"
|
|
|
|
[dependencies.async-std]
|
|
version = "1.9.0"
|
|
features = ["attributes"]
|
|
|
|
[lib]
|
|
path = "lib.rs"
|