diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-07-01 16:00:06 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-07-31 10:27:15 +0200 |
commit | e40e93796f45d34d038c6a20c4b034eb3b384b12 (patch) | |
tree | ff717ff9781c943f87715d7c8385a9af01fde3a9 /askama_parser/Cargo.toml | |
parent | bdb6c0b89df5099fe6cf2e79e04e0efd21f64aa8 (diff) | |
download | askama-e40e93796f45d34d038c6a20c4b034eb3b384b12.tar.gz askama-e40e93796f45d34d038c6a20c4b034eb3b384b12.tar.bz2 askama-e40e93796f45d34d038c6a20c4b034eb3b384b12.zip |
Extract askama_parser crate
Diffstat (limited to 'askama_parser/Cargo.toml')
-rw-r--r-- | askama_parser/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/askama_parser/Cargo.toml b/askama_parser/Cargo.toml new file mode 100644 index 0000000..8af58df --- /dev/null +++ b/askama_parser/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "askama_parser" +version = "0.1.0" +description = "Parser for Askama templates" +documentation = "https://docs.rs/askama" +keywords = ["markup", "template", "jinja2", "html"] +categories = ["template-engine"] +homepage = "https://github.com/djc/askama" +repository = "https://github.com/djc/askama" +license = "MIT OR Apache-2.0" +workspace = ".." +readme = "README.md" +edition = "2021" +rust-version = "1.58" + +[dependencies] +nom = { version = "7", default-features = false, features = ["alloc"] } |