-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.03 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
38
39
40
41
42
43
[package]
name = "trillium-html-rewriter"
version = "0.3.0"
authors = ["Jacob Rothstein <[email protected]>"]
edition = "2018"
description = "streaming html rewriter for trillium.rs"
license = "MIT OR Apache-2.0"
repository = "https://github.com/trillium-rs/trillium-html-rewriter"
keywords = ["trillium", "framework", "async"]
categories = ["web-programming::http-server", "web-programming"]
[features]
async-std = ["async_std_crate"]
default = ["async-global-executor"]
smol = ["async-global-executor"]
tokio = ["tokio_crate"]
[dependencies]
async-global-executor = { version = "2.3.1", optional = true }
cfg-if = "1.0.0"
futures-lite = "2.0.1"
lol-async = "0.2.0"
trillium = "0.2.9"
mime = "0.3.17"
[dependencies.tokio_crate]
version = "1.28.0"
optional = true
package = "tokio"
features = ["rt"]
[dependencies.async_std_crate]
version = "1.12.0"
optional = true
package = "async-std"
features = ["unstable"]
[dev-dependencies]
env_logger = "0.11.1"
trillium-proxy = "0.4.1"
trillium-rustls = "0.6.0"
trillium-smol = "0.3.0"
trillium-testing = "0.5.0"