mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-04-28 08:29:58 -07:00
The bin crate now has two features, one for each supported device. * The IOCTL change from #142 is compiled in conditionally. * Tp-link display is supported & tested for HW rev 3 and HW rev 5. The release tarballs now contain two rayhunter-daemon binaries, for orbic and tplink. An installer for tplink is not yet included. Co-authored-by: m0veax <m0veax@chaospott.de>
33 lines
715 B
TOML
33 lines
715 B
TOML
[package]
|
|
name = "rayhunter"
|
|
version = "0.2.6"
|
|
edition = "2021"
|
|
description = "Realtime cellular data decoding and analysis for IMSI catcher detection"
|
|
|
|
|
|
[lib]
|
|
name = "rayhunter"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
orbic = []
|
|
tplink = []
|
|
|
|
[dependencies]
|
|
bytes = "1.5.0"
|
|
chrono = "0.4.31"
|
|
crc = "3.0.1"
|
|
deku = { version = "0.16.0", features = ["logging"] }
|
|
env_logger = "0.10.1"
|
|
libc = "0.2.150"
|
|
log = "0.4.20"
|
|
nix = { version = "0.29.0", features = ["feature"] }
|
|
pcap-file-tokio = "0.1.0"
|
|
thiserror = "1.0.50"
|
|
telcom-parser = { path = "../telcom-parser" }
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
futures-core = "0.3.30"
|
|
futures = "0.3.30"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|