RTL-SDR Support (Expermential)

This commit is contained in:
KaraZajac
2026-02-15 20:13:27 -05:00
parent e5005c9083
commit 5b45b54dcc
10 changed files with 1988 additions and 1347 deletions
+59 -56
View File
@@ -1,56 +1,59 @@
[package]
name = "kat"
version = "1.0.1"
edition = "2021"
description = "Keyfob Analysis Toolkit - HackRF signal capture, decode, and transmit tool"
authors = ["KAT Team"]
license = "BSD-3-Clause"
[dependencies]
# TUI
ratatui = "0.29"
crossterm = "0.28"
# HackRF library
libhackrf = "0.1"
# Signal processing
num-complex = "0.4"
# Async runtime
tokio = { version = "1.43", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# INI config
configparser = "3"
# Config directory
dirs = "5.0"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Bit manipulation
bitvec = "1.0"
# TTY detection
atty = "0.2"
[build-dependencies]
pkg-config = "0.3"
[profile.release]
opt-level = 3
lto = true
[package]
name = "kat"
version = "1.0.1"
edition = "2021"
description = "Keyfob Analysis Toolkit - HackRF/RTL-SDR signal capture, decode, and transmit (HackRF only)"
authors = ["KAT Team"]
license = "BSD-3-Clause"
[dependencies]
# TUI
ratatui = "0.29"
crossterm = "0.28"
# HackRF library
libhackrf = "0.1"
# RTL-SDR (receive-only support, e.g. RTL433 hardware)
rtl-sdr-rs = "0.3"
# Signal processing
num-complex = "0.4"
# Async runtime
tokio = { version = "1.43", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# INI config
configparser = "3"
# Config directory
dirs = "5.0"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Bit manipulation
bitvec = "1.0"
# TTY detection
atty = "0.2"
[build-dependencies]
pkg-config = "0.3"
[profile.release]
opt-level = 3
lto = true