yerba 0.1.2

YAML Editing and Refactoring with Better Accuracy
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 = "2021"
name = "yerba"
version = "0.1.2"
authors = ["Marco Roth <marco.roth@intergga.ch>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YAML Editing and Refactoring with Better Accuracy"
readme = "README.md"
keywords = [
    "yaml",
    "editing",
    "refactoring",
    "lossless",
    "cli",
]
categories = [
    "parser-implementations",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/marcoroth/yerba"

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

[[bin]]
name = "yerba"
path = "src/main.rs"

[[test]]
name = "blank_lines_test"
path = "tests/blank_lines_test.rs"

[[test]]
name = "condition_test"
path = "tests/condition_test.rs"

[[test]]
name = "delete_test"
path = "tests/delete_test.rs"

[[test]]
name = "find_test"
path = "tests/find_test.rs"

[[test]]
name = "get_test"
path = "tests/get_test.rs"

[[test]]
name = "insert_test"
path = "tests/insert_test.rs"

[[test]]
name = "move_item_test"
path = "tests/move_item_test.rs"

[[test]]
name = "move_key_test"
path = "tests/move_key_test.rs"

[[test]]
name = "quote_style_test"
path = "tests/quote_style_test.rs"

[[test]]
name = "rename_test"
path = "tests/rename_test.rs"

[[test]]
name = "sequence_test"
path = "tests/sequence_test.rs"

[[test]]
name = "set_test"
path = "tests/set_test.rs"

[[test]]
name = "sort_keys_test"
path = "tests/sort_keys_test.rs"

[[test]]
name = "sort_test"
path = "tests/sort_test.rs"

[[test]]
name = "template_test"
path = "tests/template_test.rs"

[[test]]
name = "version_test"
path = "tests/version_test.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.glob]
version = "0.3"

[dependencies.indoc]
version = "2"

[dependencies.rayon]
version = "1"

[dependencies.rowan]
version = "0.16"

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.yaml_parser]
version = "0.3"

[dev-dependencies]