diff options
author | Lee Hambley <lee.hambley@gmail.com> | 2021-07-31 22:13:25 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2021-08-02 21:33:03 +0200 |
commit | d45e106bf219d6da94538e2816472ca8026500ba (patch) | |
tree | 00ba2e877a124ccb6476dfbf2d8672aa827e2258 | |
parent | 6d1cf5e43dbf5d26506585db1f801064051f49a4 (diff) | |
download | askama-d45e106bf219d6da94538e2816472ca8026500ba.tar.gz askama-d45e106bf219d6da94538e2816472ca8026500ba.tar.bz2 askama-d45e106bf219d6da94538e2816472ca8026500ba.zip |
Upgrade nom to 6.2.1 (bitvec & funty issue)
-rw-r--r-- | askama_shared/Cargo.toml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index e341b2e..1ffbf1c 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -19,8 +19,7 @@ yaml = ["serde", "serde_yaml"] [dependencies] askama_escape = { version = "0.10", path = "../askama_escape" } humansize = { version = "1.1.0", optional = true } -funty = "=1.1.0" # Temporary fix for bitvec, remove once fixed. (https://github.com/bitvecto-rs/bitvec/issues/105) -nom = { version = "6", features = ["std"], default-features = false } +nom = { version = "6.2.1", features = ["std"], default-features = false } # Gets us a newer version of bitvec https://github.com/Geal/nom/issues/1311#issuecomment-880902973 num-traits = { version = "0.2.6", optional = true } proc-macro2 = "1" quote = "1" |