interface: drop vestigial ble_peer feature alias (ble gates all BLE deps)

This commit is contained in:
DeFiDude 2026-07-17 08:38:48 -06:00
parent c65ce4c430
commit c4b1301e6f
2 changed files with 2 additions and 3 deletions

View file

@ -31,7 +31,7 @@ jobs:
run: cargo test --workspace
- name: Test BLE interface features (Linux/macOS)
if: runner.os != 'Windows'
run: cargo test -p rns-interface --features ble,ble_peer
run: cargo test -p rns-interface --features ble
lint:
name: Lint
@ -46,4 +46,4 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y libudev-dev libdbus-1-dev pkg-config
- run: cargo fmt --all -- --check
- run: cargo clippy --workspace --all-targets -- -D warnings
- run: cargo clippy -p rns-interface --features ble,ble_peer --all-targets -- -D warnings
- run: cargo clippy -p rns-interface --features ble --all-targets -- -D warnings

View file

@ -10,7 +10,6 @@ default = []
serial = ["dep:serialport"]
rnode-tcp = []
ble = ["dep:btleplug", "dep:futures", "dep:uuid", "dep:bluer"]
ble_peer = ["ble"]
# See rns-transport's mobile-throttle. When enabled, auto-interface beacons
# and reverse-peering probes slow down in the background; BLE peer scan
# cadence adjusts to `is_foreground`. Disabled on desktop builds.