-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (44 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
56 lines (44 loc) · 1.45 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
52
53
54
55
[package]
name = "flusso"
version = "0.0.1"
edition = "2021"
# Descripción general de tu proyecto
description = "Flusso - Un Ingress Controller escrito en Rust"
authors = ["Dionisio <[email protected]>"]
license = "MIT"
repository = "https://github.com/dioni-dev/flusso"
[[bin]]
name = "flusso"
path = "src/main.rs"
[dependencies]
# Dependencias de Actix para el servidor web y web GUI
actix-web = "4.9.0"
actix-rt = "2.10.0"
actix-files = "0.6.6"
actix-service = "2.0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
dotenv = "0.15"
config = "0.13"
kube = { version = "0.96.0", features = ["runtime"] }
kube-runtime = "0.96.0"
k8s-openapi = { version = "0.23", features = ["v1_28"] }
bytes = "1.1"
# Dependencias para el proxy y manejo de HTTP con TLS en Reqwest
reqwest = { version = "0.11.14", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1.41.0", features = ["full"] }
tokio-rustls = "0.26" # o una versión compatible
futures-util = "0.3.31"
# Añadir anyhow
anyhow = "1.0"
# Dependencias para TLS y certificados
rustls = { version = "0.23.16", features = ["aws_lc_rs"] }
rustls-pemfile = "0.3.0"
# Dependencias para métricas y Prometheus
# Dependencias para logging
log = "0.4.22"
env_logger = "0.11.5"
# Dependencias para pruebas
[dev-dependencies]
reqwest = { version = "0.11.14", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1.41.0", features = ["full"] }