-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
58 lines (48 loc) · 1.14 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "serde_bibtex"
description = "A BibTex (de)serialization file format"
version = "0.6.1"
edition = "2021"
authors = ["Alex Rutar <[email protected]>"]
keywords = ["bibtex", "serde", "serialization"]
categories = ["encoding", "parser-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/autobib/serde_bibtex"
exclude = [
"assets/*",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.bench]
debug = true
[dependencies]
memchr = "2.7"
pest = {version = "2.7", optional = true}
pest_derive = {version = "2.7", optional = true}
serde = "1.0"
unicase = "2.7"
[features]
all = ["entry", "syntax"]
entry = ["serde/derive"]
syntax = ["dep:pest", "dep:pest_derive"]
[dev-dependencies]
biblatex = "0.9"
criterion = { version = "0.5", features = ["html_reports"] }
nom-bibtex = "0.5.0"
proptest = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
[[bench]]
name = "small"
harness = false
[[bench]]
name = "compare"
harness = false
[[bench]]
name = "utf8_conversion"
harness = false
[[example]]
name = "custom_formatter"
[[example]]
name = "tugboat"