# 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 = "syml" version = "0.4.0" authors = ["A4-Tacks "] description = "SYML is a configuration language similar to YAML, but may be more user-friendly" readme = "README.md" keywords = [ "serde", "serialization", "yaml", ] license = "MIT" repository = "https://github.com/A4-Tacks/syml-rs" [[bin]] name = "syml2json" path = "./src/bin/syml2json.rs" required-features = ["cli-utils"] [[bin]] name = "json2syml" path = "./src/bin/json2syml.rs" required-features = ["cli-utils"] [[test]] name = "parse_test" path = "tests/parse_test.rs" harness = false [dependencies.json] version = "0.12.4" optional = true [dependencies.linked-hash-map] version = "0.5.6" [dependencies.peg] version = "0.8.2" [dependencies.serde] version = "1.0.197" optional = true [dependencies.unicode-ident] version = "1.0.12" [dev-dependencies.json] version = "0.12.4" [features] cli-utils = ["json"] default = [] serde_impl = [ "serde", "serde/derive", "linked-hash-map/serde_impl", ]