mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-30 04:19:28 -07:00
It does the same thing as https://github.com/EFForg/rayhunter/pull/272 but only installs necessary files. Installation happens entirely over the network so there is no dependency on ADB. Currently can be used like this: 1. cargo build --bin rayhunter-daemon --target armv7-unknown-linux-gnueabihf --release --no-default-features --features tplink 2. cp target/armv7-unknown-linux-gnueabihf/release/rayhunter-daemon dist/rayhunter-daemon-tplink 3. cargo run --bin installer -- install-tplink
14 lines
350 B
TOML
14 lines
350 B
TOML
[package]
|
|
name = "installer"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
clap = { version = "4.5.37", features = ["derive"] }
|
|
md5 = "0.7.0"
|
|
reqwest = { version = "0.12.15", features = ["json"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
tokio = { version = "1.44.2", features = ["full"] }
|