summaryrefslogtreecommitdiff
path: root/packet-detector/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'packet-detector/Cargo.toml')
-rw-r--r--packet-detector/Cargo.toml39
1 files changed, 39 insertions, 0 deletions
diff --git a/packet-detector/Cargo.toml b/packet-detector/Cargo.toml
new file mode 100644
index 0000000..a6c699f
--- /dev/null
+++ b/packet-detector/Cargo.toml
@@ -0,0 +1,39 @@
1[package]
2name = "packet-detector"
3version = "0.1.0"
4edition = "2021"
5
6[[bin]]
7name = "packet-detector"
8path = "src/main.rs"
9
10[[bin]]
11name = "tls_server"
12path = "src/bin/tls_server.rs"
13
14[[bin]]
15name = "tls_client"
16path = "src/bin/tls_client.rs"
17
18[dependencies]
19anyhow = "1"
20aya = { workspace = true }
21chrono = { version = "0.4", features = ["serde"] }
22env_logger = "0.11"
23futures = "0.3"
24hex = "0.4"
25k8s-openapi = { version = "0.26", features = ["v1_31"] }
26kube = { version = "2.0", features = ["runtime", "client", "derive", "rustls-tls"] }
27log = "0.4"
28rcgen = { version = "0.14", features = ["pem", "x509-parser"] }
29rustls = { version = "0.23", features = ["tls12", "ring"] }
30rustls-pemfile = "2.2"
31rustls-webpki = { version = "0.102", features = ["ring"] }
32serde = { version = "1", features = ["derive"] }
33serde_json = "1"
34sha2 = "0.10"
35tls-parser = "0.12"
36tokio = { version = "1", features = ["full"] }
37tokio-rustls = "0.26"
38webpki-roots = "1"
39x509-parser = "0.18"