This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (51 loc) · 1.72 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# 🐻❄️📦 helm-plugin: Helm plugin for charted, to help push Helm charts into charted-server easily!~
# Copyright 2022-2023 Noelware, LLC. <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "helm-plugin"
description = "📦 Helm plugin made in Rust to help push Helm charts into charted-server easily!~"
homepage = "https://charts.noelware.org/docs/helm-plugin/current"
version = "0.4.0-nightly"
edition = "2021"
authors = ["Noel <[email protected]>", "Noelware Team <[email protected]>"]
license = "Apache 2.0"
[dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.69"
async-trait = "0.1.64"
clap = { version = "4.1.4", features = ["derive"] }
clap_complete = "4.1.1"
chrono = { version = "0.4.23", features = ["serde"] }
dirs = "4.0.0"
fern = "0.6.1"
keyring = "1.2.1"
log = "0.4.17"
regex = "1.7.1"
reqwest = { version = "0.11.14", features = ["json"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
serde_yaml = "0.9.17"
once_cell = "1.17.0"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["full"] }
url = "2.3.1"
whoami = "1.3.0"
[build-dependencies]
chrono = "0.4.23"
regex = "1.7.1"
once_cell = "1.17.0"
which = "4.4.0"
[[bin]]
name = "helm-plugin"
path = "./src/main.rs"