gor-cli 0.2.0

A Rust CLI for GitHub — a 'gh' clone
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.86"
name = "gor-cli"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust CLI for GitHub — a 'gh' clone"
homepage = "https://github.com/kerryhatcher/gor"
documentation = "https://docs.rs/gor-cli"
readme = "README.md"
keywords = [
    "github",
    "cli",
    "gh",
    "git",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kerryhatcher/gor"
resolver = "2"

[features]
default = []
keyring = ["dep:keyring"]

[lib]
name = "gor"
path = "src/lib.rs"

[[bin]]
name = "gor"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
]

[dependencies.clap_complete]
version = "4"

[dependencies.console]
version = "0.15"

[dependencies.dirs]
version = "5"

[dependencies.gix]
version = "0.85"
features = [
    "basic",
    "sha1",
    "blocking-http-transport-reqwest-rust-tls",
    "worktree-mutation",
    "status",
]
default-features = false

[dependencies.indicatif]
version = "0.17"

[dependencies.keyring]
version = "3"
features = [
    "apple-native",
    "windows-native",
    "sync-secret-service",
]
optional = true

[dependencies.miette]
version = "7"

[dependencies.reqwest]
version = "0.12"
features = [
    "blocking",
    "json",
    "rustls-tls",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml_ng]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies]

[lints.clippy]
dbg_macro = "deny"
doc_markdown = "allow"
expect_used = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
print_stderr = "warn"
print_stdout = "warn"
todo = "deny"
too_many_lines = "allow"
unwrap_used = "deny"

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "deny"
unused_qualifications = "warn"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true