-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (35 loc) · 944 Bytes
/
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
38
39
[package]
name = "bem"
version = "0.2.7"
authors = ["vortex.design"]
edition = "2021"
description = "Parser for the BEM file format (Block, Element, Modifier)"
documentation = "https://docs.rs/bem/latest/bem/"
homepage = "http://vortex.design"
repository = "https://github.com/vortex-design/bem"
readme = "README.md"
keywords = ["bem", "parser", "pest"]
categories = ["parsing", "command-line-utilities"]
license = "MIT"
include = [
"Cargo.toml",
"grammar/*",
"**/*.md",
"**/*.rs",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.21", features = ["derive"] }
pest = "2.7.2"
pest_derive = "2.7.2"
pest_consume = "1.1.3"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
serde_derive = "1.0.183"
[dev-dependencies]
insta = "1.31.0"
tempfile = "3.7.1"
cargo-tarpaulin = "0.26.1"
[[bin]]
name = "bem"
path = "src/main.rs"