diff --git a/Cargo.toml b/Cargo.toml index 1460acf..ea4c8b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ license = "MIT" repository = "https://github.com/jdx/demand" readme = "README.md" keywords = ["cli", "prompt", "console"] +include = ["src/**/*", "examples/**/*", "README.md", "CHANGELOG.md", "LICENSE"] [dependencies] console = "0.15" @@ -24,4 +25,11 @@ indoc = "2" allow-branch = ["main"] sign-tag = true sign-commit = true -pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}" ] +pre-release-hook = [ + "git", + "cliff", + "-o", + "CHANGELOG.md", + "--tag", + "{{version}}", +] diff --git a/mise.toml b/mise.toml index e634d55..680280c 100644 --- a/mise.toml +++ b/mise.toml @@ -62,10 +62,7 @@ run = "cargo test --lib --tests" run = 'cargo release' [tasks.lint] -run = [ - "cargo clippy -- -D warnings", - "cargo fmt -- --check" -] +run = ["cargo clippy -- -D warnings", "cargo fmt -- --check"] [tasks.pre-commit] depends = ["lint"]