diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-29 21:49:42 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-29 21:49:44 +0100 |
commit | 84a1960489c9c92ef898eb7617061035df39ac42 (patch) | |
tree | 599bee592dbffdb5e1365e4aa9bf4f77f16d4611 /askama_shared/Cargo.toml | |
parent | cb660c7b8d398800d91d7c4c6c3276959fd14e71 (diff) | |
download | askama-84a1960489c9c92ef898eb7617061035df39ac42.tar.gz askama-84a1960489c9c92ef898eb7617061035df39ac42.tar.bz2 askama-84a1960489c9c92ef898eb7617061035df39ac42.zip |
Move input module into askama_shared
Diffstat (limited to 'askama_shared/Cargo.toml')
-rw-r--r-- | askama_shared/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 19d3274..f82f026 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -22,10 +22,12 @@ humansize = { version = "1.1.0", optional = true } # https://github.com/rust-lang/rust/issues/62146 nom = { version = "5", default-features = false, features = ["std"] } num-traits = { version = "0.2.6", optional = true } +quote = "1" serde = { version = "1.0", optional = true, features = ["derive"] } serde_derive = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true } serde_yaml = { version = "0.8", optional = true } +syn = "1" toml = { version = "0.5", optional = true } [package.metadata.docs.rs] |