[package]
edition = "2021"
name = "git-queue"
version = "0.1.1"
build = false
include = [
"src/**/*",
"skills",
"README.md",
"LICENSE",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Manage queues of dependent branches and their numbered pull requests"
readme = "README.md"
keywords = [
"git",
"pull-request",
"stacked-diffs",
"rebase",
"github",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/freshtonic/git-queue"
[lib]
name = "git_queue"
path = "src/lib.rs"
[[bin]]
name = "git-queue"
path = "src/bin/git-queue.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.clap_mangen]
version = "0.2"
[dependencies.getrandom]
version = "0.3"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
assigning_clones = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
dbg_macro = "warn"
expect_used = "warn"
format_push_string = "allow"
future_not_send = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
print_stdout = "allow"
redundant_pub_crate = "allow"
struct_excessive_bools = "allow"
todo = "warn"
too_many_lines = "allow"
unnecessary_wraps = "allow"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[profile.dist]
debug = 2
split-debuginfo = "packed"
inherits = "release"