-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "liquid-grammar-pest"
version = "0.0.1"
authors = ["S0AndS0 <[email protected]>"]
edition = "2021"
license = "AGPL-3.0"
description = "Pest grammar for parsing Shopify Liquid"
readme = ".github/README.md"
homepage = "https://github.com/rust-utilities/liquid-grammar-pest"
repository = "https://github.com/rust-utilities/liquid-grammar-pest"
keywords = [ "liquid", "pest" ]
categories = [ "development-tools::ffi", "parser-implementations" ]
# For publishing
exclude = [ "*" ]
include = [
"src/**/*.rs",
## WARNING: do not forget to include Pest grammar(s) or publishing will fail!
"src/**/*.pest",
".github/README.md",
"CHANGELOG.md",
"Cargo.toml",
"LICENSE",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pest = "2.7.10"
pest_derive = "2.7.10"
[dev-dependencies]
clap = { version = "4.3.0", features = ["derive"] }
clap_complete = "4.3.0"
colored = "2.1.0"