# 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.70.0" name = "kfl" version = "0.3.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Another KDL language implementation" homepage = "https://gitlab.com/synthetic/kfl/kfl" documentation = "https://docs.rs/kfl" readme = "README.md" keywords = [ "kdl", "configuration", "parser", ] categories = [ "parsing", "parser-implementations", "config", "encoding", ] license = "MIT/Apache-2.0" [lib] name = "kfl" path = "src/lib.rs" [[example]] name = "simple" path = "examples/simple.rs" [[test]] name = "ast" path = "tests/ast.rs" [[test]] name = "encode" path = "tests/encode.rs" [[test]] name = "encode_flatten" path = "tests/encode_flatten.rs" [[test]] name = "encode_scalar" path = "tests/encode_scalar.rs" [[test]] name = "encode_tuples" path = "tests/encode_tuples.rs" [[test]] name = "encode_types" path = "tests/encode_types.rs" [[test]] name = "flatten" path = "tests/flatten.rs" [[test]] name = "normal" path = "tests/normal.rs" [[test]] name = "scalar" path = "tests/scalar.rs" [[test]] name = "tuples" path = "tests/tuples.rs" [[test]] name = "types" path = "tests/types.rs" [[test]] name = "unwrap" path = "tests/unwrap.rs" [dependencies.base64] version = "0.22" optional = true [dependencies.chrono] version = "0.4" optional = true [dependencies.chumsky] version = "1.0.0-alpha.7" [dependencies.http] version = "1" optional = true [dependencies.kfl-derive] version = "0" optional = true [dependencies.miette] version = "7" [dependencies.minicbor] version = "0.24" features = [ "std", "derive", ] optional = true [dependencies.thiserror] version = "1" [dependencies.unicode-width] version = "0.1" optional = true [dev-dependencies.assert-json-diff] version = "2" [dev-dependencies.miette] version = "7" features = ["fancy"] [dev-dependencies.serde_json] version = "1" [features] default = [ "std", "derive", "base64", "line-numbers", ] derive = ["kfl-derive"] line-numbers = ["unicode-width"] std = []