# 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 = "tree-fs" version = "0.3.1" authors = ["Elad Kaplan "] build = false autolib = false autobins = false autoexamples = false autotests = false autobenches = false description = "Provides a convenient way to create a tree of files" documentation = "https://docs.rs/tree-fs/latest/tree_fs" readme = "README.md" keywords = [ "filesystem", "folders", "test", "assert", ] license = "Apache-2.0" repository = "https://github.com/kaplanelad/tree-fs" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [features] default = [] yaml = [ "dep:serde_yaml", "dep:thiserror", ] [lib] name = "tree_fs" path = "src/lib.rs" [[example]] name = "builder" path = "examples/builder.rs" [[example]] name = "drop" path = "examples/drop.rs" [[example]] name = "yaml-file" path = "examples/yaml-file.rs" required-features = ["yaml"] [[example]] name = "yaml-str" path = "examples/yaml-str.rs" required-features = ["yaml"] [[test]] name = "builder_tests" path = "tests/builder_tests.rs" [[test]] name = "settings_tests" path = "tests/settings_tests.rs" [[test]] name = "yaml_tests" path = "tests/yaml_tests.rs" [dependencies.rand] version = "0.9.1" [dependencies.serde] version = "1.0.193" features = ["derive"] [dependencies.serde_yaml] version = "0.9.27" optional = true [dependencies.thiserror] version = "2.0" optional = true [dev-dependencies]