-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 887 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 887 Bytes
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
[package]
authors = ["Yuval Shavit <dev@yuvalshavit.com>"]
name = "mdq"
version = "0.10.0-dev"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Select and render specific elements in a Markdown document"
repository = "https://github.com/yshavit/mdq"
keywords = ["markdown", "parsing"]
categories = ["command-line-utilities", "text-editors"]
rust-version = "1.80.1"
[dependencies]
clap = { version = "4.5.7", features = ["derive"] }
derive_builder = "0.20.2"
markdown = "1.0.0"
memchr = "2.7.4"
paste = "1.0"
pest = "2.8"
pest_derive = { version = "2.8", features = ["grammar-extras"] }
fancy-regex = "0.16"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
indoc = "2"
lazy_static = "1.4.0"
[build-dependencies]
indoc = "2"
serde = { version = "1", features = ["derive"] }
toml = "0.9"
[profile.release]
codegen-units = 1
lto = true