bluetooth_cli 0.0.1

Command-line tool for driving bluetooth_core against real hardware.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "bluetooth_cli"
version = "0.0.1"
edition = "2021"
description = "Command-line tool for driving bluetooth_core against real hardware."
license = "MIT"
repository = "https://github.com/ManyMath/bluetooth"
keywords = ["bluetooth", "ble", "cli"]
categories = ["command-line-utilities", "hardware-support"]
readme = "README.md"
rust-version = "1.75"

[[bin]]
name = "bluetooth_cli"
path = "src/main.rs"

[dependencies]
bluetooth_core = { path = "../bluetooth_core", version = "0.0.1" }