[package]
edition = "2021"
name = "gitopolis"
version = "1.17.1"
authors = ["Tim Abell <t@0x5.uk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Manage multiple git repositories - CLI tool - run commands, clone, and organize repos with tags"
homepage = "https://github.com/timabell/gitopolis"
readme = "README.md"
keywords = [
"git",
"cli",
"multi-repo",
"microservices",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "AGPL-3.0-only"
repository = "https://github.com/timabell/gitopolis"
[package.metadata.cargo-machete]
ignored = [
"serde",
"openssl",
]
[lib]
name = "gitopolis"
path = "src/lib.rs"
[[bin]]
name = "gitopolis"
path = "src/main.rs"
[[test]]
name = "end_to_end_tests"
path = "tests/end_to_end_tests.rs"
[[test]]
name = "gitopolis_tests"
path = "tests/gitopolis_tests.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.env_logger]
version = "0.11.10"
[dependencies.git2]
version = "0.20.4"
[dependencies.log]
version = "0.4.29"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dependencies.serde]
version = "1.0.228"
[dependencies.serde_derive]
version = "1.0.228"
[dependencies.toml]
version = "1.1.2"
[dependencies.wild]
version = "2.2.1"
[dev-dependencies.assert_cmd]
version = "2.2"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.27.0"