-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
26 lines (23 loc) · 1010 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
[package]
name = "gray_matter"
version = "0.2.8"
authors = ["yuchanns <[email protected]>", "Knut Magnus Aasrud <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Smart front matter parser. An implementation of gray-matter in rust. Parses YAML, JSON, TOML and support for custom parsers."
homepage = "https://github.com/the-alchemists-of-arland/gray-matter-rs"
repository = "https://github.com/the-alchemists-of-arland/gray-matter-rs"
readme = "README.md"
keywords = ["markdown", "parse", "front-matter", "gray-matter", "front-matter-parsers"]
exclude = [
".github/*"
]
[dependencies]
serde = { version = "1.0.137", features = ["derive"] }
json = { package = "serde_json", version = "1.0.81" }
toml = { version = "0.5.9", optional = true }
yaml = { package = "yaml-rust2", version = "0.8.0", optional = true }
[features]
default = ["toml", "yaml"]
[dev-dependencies]
cargo-husky = { version = "1", features = ["precommit-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"] }