-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 879 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
40
41
42
[package]
name = "asciidoc-parser"
version = "0.1.1"
description = "Parser for AsciiDoc format"
authors = ["Eric Scouten <git@scouten.me>"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/asciidoc-parser"
repository = "https://github.com/scouten/asciidoc-parser"
readme = "README.md"
edition = "2021"
keywords = ["asciidoc", "parser"]
categories = ["parser-implementations"]
rust-version = "1.74.0"
[dependencies]
bytecount = "0.6.7"
memchr = "2.6.4"
thiserror = "1.0.63"
[dev-dependencies]
codspeed-criterion-compat = "2.3.3"
criterion = "0.5.1"
pretty_assertions_sorted = "1.2.3"
[[bench]]
name = "element_attributes"
harness = false
[[bench]]
name = "inline_macro"
harness = false
[[bench]]
name = "section_with_two_blocks"
harness = false
[[bench]]
name = "simple_parse"
harness = false
[package.metadata.cargo-udeps.ignore]
development = ["criterion"]