git-remote-k8s/Cargo.toml

31 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"] }
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"