[package]
edition = "2024"
rust-version = "1.95"
name = "gitow"
version = "1.0.0"
build = false
include = [
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README-RU.md",
"/assets/icon.svg",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open Git remotes and repository pages in your browser from the CLI"
homepage = "https://github.com/WhoSowSee/gitow"
documentation = "https://docs.rs/gitow"
readme = "README.md"
keywords = [
"git",
"cli",
"browser",
"repository",
"remote",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/WhoSowSee/gitow"
[lib]
name = "gitow"
path = "src/lib.rs"
[[bin]]
name = "gitow"
path = "src/main.rs"
[[test]]
name = "basic_cli"
path = "tests/basic_cli.rs"
[[test]]
name = "bitbucket_azure_aws_cli"
path = "tests/bitbucket_azure_aws_cli.rs"
[[test]]
name = "github_navigation_cli"
path = "tests/github_navigation_cli.rs"
[[test]]
name = "github_pages_cli"
path = "tests/github_pages_cli.rs"
[[test]]
name = "gitlab_gitea_cli"
path = "tests/gitlab_gitea_cli.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.assert_cmd]
version = "2.2.1"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.27.0"