[[bin]]
name = "simple-include"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5.20"
[dependencies.notify]
version = "6.1.1"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.2"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["development-tools", "development-tools::build-utils", "parsing", "command-line-utilities"]
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."""
edition = "2021"
homepage = "https://github.com/paulpr0/simple-include"
keywords = ["include", "watch", "pre-processor", "preprocessor"]
license = "MIT"
name = "simple-include"
readme = "README.md"
repository = "https://github.com/paulpr0/simple-include"
version = "0.3.0"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"