-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (49 loc) · 1.79 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (49 loc) · 1.79 KB
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
[package]
name = "starling-devex"
version = "0.3.8"
edition = "2021"
description = "Starling: a local dev orchestrator with a central daemon, shared named-URL proxy, and a k9s-style TUI (a Rust port of Tilt + portless)"
license = "Apache-2.0"
repository = "https://github.com/thousandbirdsinc/starling-devex"
readme = "README.md"
keywords = ["tilt", "kubernetes", "dev-environment", "tui", "proxy"]
categories = ["command-line-utilities", "development-tools"]
# The package is `starling-devex`; the installed CLI command is `starling`.
[[bin]]
name = "starling"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7", features = ["ws"] }
tokio = { version = "1", features = ["full"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["fs", "trace", "cors"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = "0.3"
clap = { version = "4", features = ["derive"] }
starlark = "=0.12.0"
notify = "6"
anyhow = "1"
# Pinned: starlark_map 0.12 needs hashbrown 0.14's `RawTable`, but cargo
# otherwise selects allocative 0.3.6 which only impls Allocative for hashbrown
# 0.16 types. 0.3.4 pulls hashbrown 0.14 and compiles. Bump with starlark.
allocative = "=0.3.4"
serde_yaml = "0.9"
semver = "1"
ratatui = "0.28"
crossterm = "0.28"
dirs = "5"
rcgen = { version = "0.13", features = ["x509-parser"] }
tokio-rustls = "0.26"
rustls-pemfile = "2"
bollard = "0.18"
tar = "0.4"
regex = "1.12.3"
libc = "0.2"
kube = { version = "3.1.0", default-features = false, features = ["client", "rustls-tls", "ws"] }
k8s-openapi = { version = "0.27.1", features = ["latest"] }
tokio-util = { version = "0.7.18", features = ["compat"] }