2023-12-29 01:15:52 +02:00
|
|
|
[package]
|
2023-12-29 17:01:58 +02:00
|
|
|
name = "thermaldecoder"
|
2023-12-29 01:15:52 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.77"
|
2024-02-20 21:23:26 +02:00
|
|
|
axum = "0.7.4"
|
2024-02-19 21:52:49 +02:00
|
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
2024-02-16 00:42:24 +02:00
|
|
|
crossbeam = "0.8.4"
|
|
|
|
crossbeam-channel = "0.5.11"
|
2024-02-17 15:43:20 +02:00
|
|
|
dotenv = "0.15.0"
|
2024-02-16 00:42:24 +02:00
|
|
|
eframe = "0.26.2"
|
2024-02-15 23:24:22 +02:00
|
|
|
egui = "0.26.2"
|
2023-12-29 02:37:50 +02:00
|
|
|
indicatif = "0.17.7"
|
2024-02-15 23:24:22 +02:00
|
|
|
pcap = { version = "1.2.0", features = ["capture-stream"] }
|
2023-12-29 01:28:53 +02:00
|
|
|
pcap-parser = { version = "0.14.1", features = ["data"] }
|
2023-12-29 02:37:50 +02:00
|
|
|
png = "0.17.10"
|
2023-12-29 17:01:58 +02:00
|
|
|
pyo3 = { version = "0.20.0", "features" = ["extension-module"] }
|
2024-02-22 23:08:30 +02:00
|
|
|
rgb_hsv = "1.0.1"
|
2023-12-29 02:22:07 +02:00
|
|
|
serde = { version = "1.0.193", features = ["derive", "serde_derive", "alloc"] }
|
2024-02-20 23:29:33 +02:00
|
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
|
|
|
tracing-subscriber = "0.3.18"
|
2024-02-17 17:21:01 +02:00
|
|
|
v4l = { version = "0.14.0", features = ["v4l2"], default-features = false }
|