[package]
edition = "2021"
name = "worktree-io"
version = "0.10.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool to open GitHub issues as git worktree workspaces"
readme = "README.md"
keywords = [
"worktree",
"github",
"issues",
"cli",
"git",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/worktree-io/runner"
[lib]
name = "worktree_io"
path = "src/lib.rs"
[[bin]]
name = "worktree"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "git"
path = "tests/git.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "1"
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.cargo-husky]
version = "1"
features = ["user-hooks"]
default-features = false
[lints.clippy]
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"