forked from toml-rs/toml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
70 lines (58 loc) · 1.75 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
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "toml_edit"
version = "0.3.1"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["toml"]
categories = ["encoding", "parser-implementations", "parsing"]
description = "Yet another format-preserving TOML parser."
authors = ["Andronik Ordian <[email protected]>", "Ed Page <[email protected]>"]
repository = "https://github.com/ordian/toml_edit"
documentation = "https://docs.rs/toml_edit"
edition = "2018"
[package.metadata.docs.rs]
features = ["easy"]
[package.metadata.release]
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/ordian/toml_edit/compare/{{tag_name}}...HEAD", exactly=1},
]
[features]
default = []
easy = ["serde"]
[dependencies]
indexmap = "1.7"
combine = "4.5.2"
vec1 = "1"
itertools = "0.10"
serde = { version = "1", features = ["derive"], optional = true }
kstring = { version = "1", features = ["max_inline"] }
[dev-dependencies]
serde_json = "1.0.44"
pretty_assertions = "0.7.1"
toml-test-harness = "0.3"
criterion = "0.3"
toml = "0.5"
[[test]]
name = "decoder_compliance"
harness = false
[[test]]
name = "encoder_compliance"
harness = false
[[test]]
name = "easy_decoder_compliance"
harness = false
[[test]]
name = "easy_encoder_compliance"
harness = false
[[bench]]
name = "cargo"
harness = false
[[bench]]
name = "linear"
harness = false
[profile.dev]
opt-level = 1