Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
156
third-party/vendor/toml_edit/Cargo.toml
vendored
Normal file
156
third-party/vendor/toml_edit/Cargo.toml
vendored
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||||
#
|
||||
# When uploading crates to the registry Cargo will automatically
|
||||
# "normalize" Cargo.toml files for maximal compatibility
|
||||
# with all versions of Cargo and also rewrite `path` dependencies
|
||||
# to registry (e.g., crates.io) dependencies.
|
||||
#
|
||||
# If you are reading this file be aware that the original Cargo.toml
|
||||
# will likely look very different (and much more reasonable).
|
||||
# See Cargo.toml.orig for the original contents.
|
||||
|
||||
[package]
|
||||
edition = "2021"
|
||||
rust-version = "1.66.0"
|
||||
name = "toml_edit"
|
||||
version = "0.19.15"
|
||||
authors = [
|
||||
"Andronik Ordian <write@reusable.software>",
|
||||
"Ed Page <eopage@gmail.com>",
|
||||
]
|
||||
include = [
|
||||
"build.rs",
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"Cargo.lock",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"benches/**/*",
|
||||
"examples/**/*",
|
||||
"tests/**/*",
|
||||
]
|
||||
description = "Yet another format-preserving TOML parser."
|
||||
readme = "README.md"
|
||||
keywords = [
|
||||
"encoding",
|
||||
"toml",
|
||||
]
|
||||
categories = [
|
||||
"encoding",
|
||||
"parser-implementations",
|
||||
"parsing",
|
||||
"config",
|
||||
]
|
||||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/toml-rs/toml"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
features = ["serde"]
|
||||
rustdoc-args = [
|
||||
"--cfg",
|
||||
"docsrs",
|
||||
]
|
||||
|
||||
[package.metadata.release]
|
||||
tag-name = "v{{version}}"
|
||||
|
||||
[[package.metadata.release.pre-release-replacements]]
|
||||
file = "CHANGELOG.md"
|
||||
min = 1
|
||||
replace = "{{version}}"
|
||||
search = "Unreleased"
|
||||
|
||||
[[package.metadata.release.pre-release-replacements]]
|
||||
exactly = 1
|
||||
file = "CHANGELOG.md"
|
||||
replace = "...{{tag_name}}"
|
||||
search = '\.\.\.HEAD'
|
||||
|
||||
[[package.metadata.release.pre-release-replacements]]
|
||||
file = "CHANGELOG.md"
|
||||
min = 1
|
||||
replace = "{{date}}"
|
||||
search = "ReleaseDate"
|
||||
|
||||
[[package.metadata.release.pre-release-replacements]]
|
||||
exactly = 1
|
||||
file = "CHANGELOG.md"
|
||||
replace = """
|
||||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
"""
|
||||
search = "<!-- next-header -->"
|
||||
|
||||
[[package.metadata.release.pre-release-replacements]]
|
||||
exactly = 1
|
||||
file = "CHANGELOG.md"
|
||||
replace = """
|
||||
<!-- next-url -->
|
||||
[Unreleased]: https://github.com/toml-rs/toml/compare/{{tag_name}}...HEAD"""
|
||||
search = "<!-- next-url -->"
|
||||
|
||||
[[example]]
|
||||
name = "visit"
|
||||
test = true
|
||||
|
||||
[[test]]
|
||||
name = "decoder_compliance"
|
||||
harness = false
|
||||
|
||||
[[test]]
|
||||
name = "encoder_compliance"
|
||||
harness = false
|
||||
|
||||
[[test]]
|
||||
name = "invalid"
|
||||
harness = false
|
||||
|
||||
[dependencies.indexmap]
|
||||
version = "2.0.0"
|
||||
features = ["std"]
|
||||
|
||||
[dependencies.kstring]
|
||||
version = "2.0.0"
|
||||
features = ["max_inline"]
|
||||
optional = true
|
||||
|
||||
[dependencies.serde]
|
||||
version = "1.0.145"
|
||||
optional = true
|
||||
|
||||
[dependencies.serde_spanned]
|
||||
version = "0.6.3"
|
||||
features = ["serde"]
|
||||
optional = true
|
||||
|
||||
[dependencies.toml_datetime]
|
||||
version = "0.6.3"
|
||||
|
||||
[dependencies.winnow]
|
||||
version = "0.5.0"
|
||||
|
||||
[dev-dependencies.libtest-mimic]
|
||||
version = "0.6.0"
|
||||
|
||||
[dev-dependencies.serde_json]
|
||||
version = "1.0.96"
|
||||
|
||||
[dev-dependencies.snapbox]
|
||||
version = "0.4.11"
|
||||
features = ["harness"]
|
||||
|
||||
[dev-dependencies.toml-test-data]
|
||||
version = "1.3.0"
|
||||
|
||||
[dev-dependencies.toml-test-harness]
|
||||
version = "0.4.3"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
perf = ["dep:kstring"]
|
||||
serde = [
|
||||
"dep:serde",
|
||||
"toml_datetime/serde",
|
||||
"dep:serde_spanned",
|
||||
]
|
||||
unbounded = []
|
||||
Loading…
Add table
Add a link
Reference in a new issue