-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 861 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 <[email protected]>"]
name = "mdq"
version = "0.10.1-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.85.1"
[dependencies]
clap = { version = "4", features = ["derive"] }
derive_builder = "0.20.2"
markdown = "1"
memchr = "2"
paste = "1"
pest = "2"
pest_derive = { version = "2", features = ["grammar-extras"] }
fancy-regex = "0.17"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[dev-dependencies]
indoc = "2"
lazy_static = "1"
[build-dependencies]
indoc = "2"
serde = { version = "1", features = ["derive"] }
toml = "1"
[profile.release]
codegen-units = 1
lto = true