2023-10-31 04:34:37 +00:00
|
|
|
[package]
|
|
|
|
name = "git-remote-k8s"
|
2023-11-01 06:27:30 +00:00
|
|
|
description = "a git remote helper to use PVCs as a remote"
|
|
|
|
authors = ["James Andariese"]
|
|
|
|
readme = "README.md"
|
2023-11-02 03:18:26 +00:00
|
|
|
version = "0.2.1-alpha.1"
|
2023-10-31 04:34:37 +00:00
|
|
|
edition = "2021"
|
2023-11-01 06:27:30 +00:00
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
keywords = ["git", "remote", "kubernetes"]
|
|
|
|
categories = ["development-tools", "command-line-utilities"]
|
2023-10-31 04:34:37 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.75"
|
|
|
|
clap = { version = "4.4.7", features = ["derive", "env"] }
|
2023-11-02 00:16:34 +00:00
|
|
|
default_macro = "0.2.1"
|
2023-10-31 04:34:37 +00:00
|
|
|
futures = "0.3.29"
|
2023-11-01 05:06:38 +00:00
|
|
|
humantime = "2.1.0"
|
2023-10-31 04:34:37 +00:00
|
|
|
k8s-openapi = { version = "0.20.0", features = ["v1_27"] }
|
2023-11-02 01:03:15 +00:00
|
|
|
kube = { version = "0.87.1", features = ["ws"] }
|
2023-10-31 08:25:16 +00:00
|
|
|
kube_quantity = "0.7.0"
|
2023-10-31 04:34:37 +00:00
|
|
|
once_cell = "1.18.0"
|
|
|
|
regex = "1.10.2"
|
|
|
|
serde = { version = "1.0.190", features = ["derive"] }
|
2023-11-02 01:03:15 +00:00
|
|
|
serde_json = "1.0.108"
|
2023-10-31 04:34:37 +00:00
|
|
|
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"
|