-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 966 Bytes
/
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
[package]
name = "rustify"
version = "2.0.6"
authors = ["Harshit Duggal <[email protected]>"]
edition = "2021"
description = "**An advanced CLI tool for streamlining containerization, orchestration, scaling, and server proxy**"
[features]
default = ["vendored", "k8s-v1-26"]
vendored = ["openssl-sys/vendored"]
k8s-v1-26 = ["k8s-openapi/v1_26"]
[dependencies]
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.4.0"
whoami = "1.4"
colored = "2.0.4"
tokio = { version = "1.0", features = ["full"] }
k8s-openapi = { version = "0.18.0", features = ["v1_26"] }
kube = { version = "0.82.0", features = ["runtime", "derive"] }
futures = "0.3"
parking_lot = "0.12"
dashmap = "5.4"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
clap = "3.2"
openssl = "0.10"
openssl-sys = "0.9"
async-trait = "0.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = 'abort'
strip = true