-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathCargo.toml
80 lines (74 loc) · 2.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "kftray-tauri"
version = "0.16.1"
description = "A cross-platform system tray app for Kubernetes port-forward management"
authors = ["Henrique Cavarsan <hencavarsan@gmail.com>"]
license = "MIT"
homepage = "https://kftray.app"
repository = "https://github.com/hcavarsan/kftray"
edition = "2021"
[lib]
name = "kftray_tauri"
path = "src/lib.rs"
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
serde_json = "1.0.135"
tauri = { version = "1.8", default-features = false, features = [
"updater",
"api-all",
"macos-private-api",
"system-tray",
"icon-png",
"devtools",
] }
tauri-plugin-positioner = { version = "1.0.5", features = ["system-tray"] }
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros", "full"] }
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio-native-tls"] }
dirs = "6.0.0"
reqwest = "0.12.12"
base64 = "0.22.1"
keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "linux-native"] }
hostsfile = { git = "https://github.com/tonarino/innernet", branch = "main" }
log = "0.4"
env_logger = "0.11.6"
openssl = { version = "0.10.71", features = ["vendored"] }
openssl-sys = { version = "0.9.104", features = ["vendored"] }
kube = { version = "0.98.0", features = ["client", "config", "rustls-tls", "ws", "openssl-tls"] }
k8s-openapi = { version = "0.24", default-features = false, features = [
"latest",
] }
tokio-stream = { version = "0.1.17", features = ["net"] }
futures = "0.3.31"
anyhow = "1.0.95"
tracing = "0.1.41"
hyper = { version = "1.4.1", features = ["client", "http1", "http2"] }
hyper-util = { version = "0.1.10", features = ["client-legacy", "http1", "tokio"] }
lazy_static = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
rand = "0.9.0"
kube-runtime = "0.98"
tower = "0.5.2"
whoami = "1.5.2"
tempfile = "3.13"
h2 = { optional = true, version = "0.4.7" }
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
open = "5.3.2"
kftray-portforward = { path = "../kftray-portforward" }
kftray-commons = { path = "../kftray-commons" }
kftray-http-logs = { path = "../kftray-http-logs" }
netstat2 = { git = "https://github.com/hcavarsan/netstat2-rs" }
sysinfo = "0.33.1"
secrecy = "0.10.3"
git2 = { version = "0.17.1", features = ["ssh"] }
url = "2.5.3"
[dev-dependencies]
tempfile = "3.13"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]