forked from lambda-fairy/maud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.26.0"
documentation = "https://docs.rs/maud/"
description = "Compile-time HTML templates."
categories = ["template-engine"]
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
edition.workspace = true
[features]
default = []
# Web framework integrations
actix-web = ["actix-web-dep", "futures-util"]
axum = ["axum-core", "http"]
[dependencies]
maud_macros = { version = "0.26.0", path = "../maud_macros" }
itoa = "1"
rocket = { version = "0.5", optional = true }
futures-util = { version = "0.3.0", optional = true, default-features = false }
actix-web-dep = { package = "actix-web", version = "4", optional = true, default-features = false }
tide = { version = "0.16.0", optional = true, default-features = false }
axum-core = { version = "0.4", optional = true }
http = { version = "1", optional = true }
warp = { version = "0.3.6", optional = true }
[dev-dependencies]
trybuild = { version = "1.0.33", features = ["diff"] }
[package.metadata.docs.rs]
all-features = true