c12-parser 1.0.2

Toolbox for parsing and stringifying various formats, including JSON, JSON5, JSONC, INI, TOML, and YAML.
Documentation
# 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 = "2024"
name = "c12-parser"
version = "1.0.2"
authors = ["YONGQI <betterhyq@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Toolbox for parsing and stringifying various formats, including JSON, JSON5, JSONC, INI, TOML, and YAML."
homepage = "https://github.com/un-rust/c12-parser"
documentation = "https://docs.rs/c12-parser"
readme = "README.md"
keywords = []
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/un-rust/c12-parser"

[lib]
name = "c12_parser"
path = "src/lib.rs"

[[bin]]
name = "c12-parser"
path = "src/main.rs"

[[example]]
name = "hello_world"
path = "examples/hello_world.rs"

[[example]]
name = "parse_ini"
path = "examples/parse_ini.rs"

[[example]]
name = "parse_json"
path = "examples/parse_json.rs"

[[example]]
name = "parse_json5"
path = "examples/parse_json5.rs"

[[example]]
name = "parse_jsonc"
path = "examples/parse_jsonc.rs"

[[example]]
name = "parse_toml"
path = "examples/parse_toml.rs"

[[example]]
name = "parse_yaml"
path = "examples/parse_yaml.rs"

[dependencies.ini]
version = "1.3.0"

[dependencies.json5]
version = "1.3.1"

[dependencies.jsonc-parser]
version = "0.29.0"
features = ["serde"]

[dependencies.once_cell]
version = "1.20.2"

[dependencies.regex]
version = "1.12.3"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.toml]
version = "1.0"

[dependencies.toml-span]
version = "0.7.0"