diff options
-rw-r--r-- | askama/Cargo.toml | 2 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 07c0530..85e1213 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -18,7 +18,7 @@ maintenance = { status = "actively-developed" } [features] default = ["config", "humansize", "num-traits", "urlencode"] -config = ["askama_shared/config"] +config = ["askama_derive/config", "askama_shared/config"] humansize = ["askama_shared/humansize"] urlencode = ["askama_shared/percent-encoding"] serde-json = ["askama_shared/json"] diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index f3df891..258ad9e 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -14,6 +14,8 @@ edition = "2018" proc-macro = true [features] +config = ["askama_shared/config"] + actix-web = [] gotham = [] iron = [] |