[package]
edition = "2021"
name = "gitee-cli-rs"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A gh-like command-line client for Gitee"
readme = "README.md"
license = "MIT"
repository = "https://github.com/kipyin/gitee-cli"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/gitee-{ target }-v{ version }{ archive-suffix }"
pkg-fmt = "txz"
bin-dir = "gitee-{ target }-v{ version }/{ bin }{ binary-ext }"
[lib]
name = "gitee_cli_rs"
path = "src/lib.rs"
[[bin]]
name = "gitee"
path = "src/main.rs"
[[test]]
name = "api_passthrough"
path = "tests/api_passthrough.rs"
[[test]]
name = "client_errors"
path = "tests/client_errors.rs"
[[test]]
name = "client_paged"
path = "tests/client_paged.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "ops_collaborators"
path = "tests/ops_collaborators.rs"
[[test]]
name = "ops_gists"
path = "tests/ops_gists.rs"
[[test]]
name = "ops_issues"
path = "tests/ops_issues.rs"
[[test]]
name = "ops_labels"
path = "tests/ops_labels.rs"
[[test]]
name = "ops_milestones"
path = "tests/ops_milestones.rs"
[[test]]
name = "ops_orgs"
path = "tests/ops_orgs.rs"
[[test]]
name = "ops_pulls"
path = "tests/ops_pulls.rs"
[[test]]
name = "ops_releases"
path = "tests/ops_releases.rs"
[[test]]
name = "ops_repos"
path = "tests/ops_repos.rs"
[[test]]
name = "ops_search"
path = "tests/ops_search.rs"
[[test]]
name = "ops_ssh_keys"
path = "tests/ops_ssh_keys.rs"
[[test]]
name = "ops_users"
path = "tests/ops_users.rs"
[[test]]
name = "ops_webhooks"
path = "tests/ops_webhooks.rs"
[[test]]
name = "update_notice_fetch"
path = "tests/update_notice_fetch.rs"
[[test]]
name = "update_notice_lifecycle"
path = "tests/update_notice_lifecycle.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dirs]
version = "5"
[dependencies.inquire]
version = "0.9.4"
[dependencies.jaq-core]
version = "3"
[dependencies.jaq-json]
version = "2"
features = ["serde"]
[dependencies.jaq-std]
version = "3"
[dependencies.keyring]
version = "3"
[dependencies.open]
version = "5"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
"json",
"gzip",
"multipart",
]
default-features = false
[dependencies.semver]
version = "1.0.28"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.shell-words]
version = "1"
[dependencies.tabled]
version = "0.16"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.thiserror]
version = "1"
[dependencies.url]
version = "2"
[dev-dependencies.mockito]
version = "1"