diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-09-02 22:24:12 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-11-11 19:53:05 +0100 |
commit | 40811eeba7e379f82e66b95867159479b48520c9 (patch) | |
tree | e68c0af8ded32ff3a3494b3a813b8635e882c8c6 /askama_derive/Cargo.toml | |
parent | ebf99e6628aeb242917ccfcca5dff3d075149ccc (diff) | |
download | askama-40811eeba7e379f82e66b95867159479b48520c9.tar.gz askama-40811eeba7e379f82e66b95867159479b48520c9.tar.bz2 askama-40811eeba7e379f82e66b95867159479b48520c9.zip |
Upgrade to nom 5
Diffstat (limited to 'askama_derive/Cargo.toml')
-rw-r--r-- | askama_derive/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index bf0a1ac..26cd79d 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -20,7 +20,9 @@ gotham = [] [dependencies] askama_shared = { version = "0.8", path = "../askama_shared" } -nom = "4" +# default for features for nom don't work result in linker errors: +# https://github.com/rust-lang/rust/issues/62146 +nom = { version = "5", default-features = false, features = ["std"] } proc-macro2 = "1" quote = "1" syn = "1" |