# 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.56.0" name = "serde_yml" version = "0.0.12" authors = ["Serde YML Contributors"] build = "build.rs" exclude = [ "/.git/*", "/.github/*", "/.gitignore", "/.vscode/*", ] include = [ "/CONTRIBUTING.md", "/LICENSE-APACHE", "/LICENSE-MIT", "/benches/**", "/build.rs", "/Cargo.toml", "/examples/**", "/README.md", "/src/**", "/tests/**", ] autobins = false autoexamples = false autotests = false autobenches = false description = """ A robust Rust library that simplifies the serialization and deserialization of Rust data structures to and from YAML format using the widely-used Serde framework. """ homepage = "https://serdeyml.com" documentation = "https://docs.rs/serde_yml/" readme = "README.md" keywords = [ "yaml", "serde", "serialization", ] categories = [ "encoding", "parser-implementations", ] license = "MIT OR Apache-2.0" repository = "https://github.com/sebastienrousseau/serde_yml" [package.metadata.clippy] warn-lints = [ "clippy::all", "clippy::pedantic", "clippy::cargo", "clippy::nursery", ] [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--generate-link-to-definition", "--cfg", "docsrs", "--document-private-items", "--display-warnings", ] targets = ["x86_64-unknown-linux-gnu"] [profile.dev] opt-level = 0 lto = false codegen-units = 256 debug = 2 debug-assertions = true rpath = false panic = "unwind" overflow-checks = true incremental = true strip = false [profile.release] opt-level = "s" lto = true codegen-units = 1 debug = 0 debug-assertions = false rpath = false panic = "abort" overflow-checks = false incremental = false strip = "symbols" [profile.test] opt-level = 0 lto = false codegen-units = 256 debug = 2 debug-assertions = true rpath = false overflow-checks = true incremental = true strip = false [lib] name = "serde_yml" crate-type = ["lib"] path = "src/lib.rs" doc-scrape-examples = false required-features = [] [[example]] name = "example" path = "examples/example.rs" [[test]] name = "mod" path = "tests/mod.rs" [[test]] name = "test_anchors_and_aliases" path = "tests/test_anchors_and_aliases.rs" [[test]] name = "test_de" path = "tests/test_de.rs" [[test]] name = "test_error" path = "tests/test_error.rs" [[test]] name = "test_lib" path = "tests/test_lib.rs" [[test]] name = "test_loader" path = "tests/test_loader.rs" [[test]] name = "test_mapping" path = "tests/test_mapping.rs" [[test]] name = "test_number" path = "tests/test_number.rs" [[test]] name = "test_ser" path = "tests/test_ser.rs" [[test]] name = "test_serde" path = "tests/test_serde.rs" [[test]] name = "test_tagged" path = "tests/test_tagged.rs" [[test]] name = "test_value" path = "tests/test_value.rs" [[test]] name = "test_with" path = "tests/test_with.rs" [dependencies.indexmap] version = "2.2.4" [dependencies.itoa] version = "1.0" [dependencies.libyml] version = "0.0.5" [dependencies.memchr] version = "2" default-features = false [dependencies.ryu] version = "1.0" [dependencies.serde] version = "1.0.204" [dev-dependencies.indoc] version = "2.0.5" [dev-dependencies.serde] version = "1.0.204" features = ["derive"] [dev-dependencies.serde_derive] version = "1.0.204" [build-dependencies.version_check] version = "0.9.4" [features] default = [] [lints.rust] bare_trait_objects = "allow" dead_code = "deny" deprecated_in_future = "deny" elided_lifetimes_in_paths = "allow" ellipsis_inclusive_range_patterns = "deny" explicit_outlives_requirements = "deny" macro_use_extern_crate = "deny" meta_variable_misuse = "deny" missing_copy_implementations = "warn" missing_debug_implementations = "forbid" missing_docs = "warn" missing_fragment_specifier = "deny" non_ascii_idents = "forbid" non_camel_case_types = "allow" non_upper_case_globals = "allow" noop_method_call = "deny" single_use_lifetimes = "deny" trivial_bounds = "allow" trivial_casts = "deny" trivial_numeric_casts = "deny" unreachable_pub = "forbid" unsafe_code = "allow" unstable_features = "warn" unused_extern_crates = "warn" unused_features = "deny" unused_import_braces = "deny" unused_labels = "deny" unused_lifetimes = "deny" unused_macro_rules = "deny" unused_qualifications = "deny" variant_size_differences = "deny" [lints.rust.future_incompatible] level = "deny" priority = -1 [lints.rust.keyword_idents] level = "deny" priority = -1 [lints.rust.rust_2018_idioms] level = "deny" priority = -1 [lints.rust.rust_2021_compatibility] level = "deny" priority = -1 [lints.rust.unused] level = "deny" priority = -1