-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable features on doctest dependencies
Let's see if this speeds up the build
- Loading branch information
1 parent
d8941fe
commit 6e24f5d
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|