-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 856 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
[package]
name = "kubeshim"
version = "0.10.4"
authors = ["Evan Pitstick <emp@seclab.in>"]
edition = "2021"
[dependencies]
serde = { version = "1.0.137", features = ["derive"] }
hyper = { version = "0.14.18", features = ["full"] }
dirs = "4.0.0"
log = "0.4.17"
tokio-socks = "0.5.1"
iprange = "0.6.7"
ipnet = "2.5.0"
serde_yaml = "0.8.24"
regex = "1.5.6"
stable-eyre = "0.2.2"
simple_logger = "2.1.0"
path-absolutize = "3.0.13"
[dependencies.tokio]
version = "1.18.2"
features = ["rt-multi-thread", "net", "process", "macros", "io-util", "signal"]
[dependencies.clap]
version = "3.1.18"
default-features = true
features = ["std", "cargo", "derive"]
[profile.dev]
split-debuginfo = "unpacked"
# Seems broken right now
incremental = false
# https://doc.rust-lang.org/rustc/profile-guided-optimization.html
[profile.release]
lto = true
codegen-units = 1