git-remote-k8s/Cargo.toml
James Andariese a8539a6d94 clean up some defaults further
use the default_macro crate (so few downloads!) to remove all those
annoying default() calls at the end of every struct.
2023-11-01 19:16:34 -05:00

32 lines
1.0 KiB
TOML

[package]
name = "git-remote-k8s"
description = "a git remote helper to use PVCs as a remote"
authors = ["James Andariese"]
readme = "README.md"
homepage = "https://git.strudelline.net/cascade/git-remote-k8s"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-only"
keywords = ["git", "remote", "kubernetes"]
categories = ["development-tools", "command-line-utilities"]
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.7", features = ["derive", "env"] }
default_macro = "0.2.1"
futures = "0.3.29"
humantime = "2.1.0"
k8s-openapi = { version = "0.20.0", features = ["v1_27"] }
kube = { version = "0.86.0", features = ["ws"] }
kube_quantity = "0.7.0"
once_cell = "1.18.0"
regex = "1.10.2"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.50"
tokio = { version = "1.33.0", features = ["rt", "tokio-macros", "macros", "rt-multi-thread", "io-std", "io-util"] }
tokio-util = { version = "0.7.10", features = ["io-util"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = "0.3.17"
url = "2.4.1"