Skip to content

Commit

Permalink
Disable features on doctest dependencies
Browse files Browse the repository at this point in the history
Let's see if this speeds up the build
  • Loading branch information
lambda-fairy committed Sep 18, 2021
1 parent d8941fe commit 6e24f5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doctest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ authors = ["Chris Wong <[email protected]>"]
edition = "2018"

[dependencies]
actix-web = "3"
actix-web = { version = "3", default-features = false }
ammonia = "3"
iron = "0.6"
maud = { path = "../maud", features = ["actix-web", "iron", "rocket", "tide", "axum"] }
pulldown-cmark = "0.8"
rocket = "0.4"
rocket = { version = "0.4", default-features = false }
rouille = "3"
tide = "0.16"
tide = { version = "0.16", default-features = false }
tokio = { version = "1.9.0", features = ["rt", "macros", "rt-multi-thread"] }
axum = "0.1.3"
axum = { version = "0.1.3", default-features = false }

[dependencies.async-std]
version = "1.9.0"
Expand Down

0 comments on commit 6e24f5d

Please sign in to comment.