# 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 = "simple-include" version = "0.3.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ A simple tool to include files in other files. Looks for lines with a given prefix and replaces them with the contents of the file they point to. Can watch for changes in the source directory and keep the target directory in sync.""" homepage = "https://github.com/paulpr0/simple-include" readme = "README.md" keywords = [ "include", "watch", "pre-processor", "preprocessor", ] categories = [ "development-tools", "development-tools::build-utils", "parsing", "command-line-utilities", ] license = "MIT" repository = "https://github.com/paulpr0/simple-include" [[bin]] name = "simple-include" path = "src/main.rs" [[test]] name = "integration_tests" path = "tests/integration_tests.rs" [dependencies.clap] version = "4.5.20" features = ["derive"] [dependencies.notify] version = "6.1.1" [dependencies.walkdir] version = "2.5" [dev-dependencies.tempfile] version = "3.2"