[package]
edition = "2021"
rust-version = "1.88"
name = "bbcloud"
version = "0.11.1"
authors = ["Seán Baufeld"]
build = false
exclude = [
"docs/",
".github/",
".superpowers/",
".worktrees/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitbucket Cloud CLI — open pull requests, read every comment, write replies, from the shell"
homepage = "https://github.com/biokraft/bbcloud"
documentation = "https://github.com/biokraft/bbcloud#readme"
readme = "README.md"
keywords = [
"bitbucket",
"cli",
"pull-request",
"git",
"devtools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/biokraft/bbcloud"
[lib]
name = "bb_cli"
path = "src/lib.rs"
[[bin]]
name = "bb"
path = "src/main.rs"
[[test]]
name = "api_client"
path = "tests/api_client.rs"
[[test]]
name = "auth"
path = "tests/auth.rs"
[[test]]
name = "branch"
path = "tests/branch.rs"
[[test]]
name = "browse"
path = "tests/browse.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "pr"
path = "tests/pr.rs"
[[test]]
name = "pr_comment"
path = "tests/pr_comment.rs"
[[test]]
name = "pr_create"
path = "tests/pr_create.rs"
[[test]]
name = "pr_list"
path = "tests/pr_list.rs"
[[test]]
name = "pr_review"
path = "tests/pr_review.rs"
[[test]]
name = "pr_reviewers"
path = "tests/pr_reviewers.rs"
[[test]]
name = "pr_view"
path = "tests/pr_view.rs"
[[test]]
name = "repo_resolve"
path = "tests/repo_resolve.rs"
[[test]]
name = "skill"
path = "tests/skill.rs"
[[test]]
name = "skill_update"
path = "tests/skill_update.rs"
[[test]]
name = "update"
path = "tests/update.rs"
[[test]]
name = "user_resolve"
path = "tests/user_resolve.rs"
[[test]]
name = "user_resolve_cli"
path = "tests/user_resolve_cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.comfy-table]
version = "7"
[dependencies.flate2]
version = "1"
[dependencies.indicatif]
version = "0.17"
[dependencies.inquire]
version = "0.7"
features = ["editor"]
[dependencies.keyring]
version = "3"
features = [
"apple-native",
"sync-secret-service",
"vendored",
]
[dependencies.open]
version = "5"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.secrecy]
version = "0.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.urlencoding]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[profile.release]
lto = true
codegen-units = 1
strip = true