-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "android-bluetooth-serial"
version = "0.1.1"
authors = ["wuwbobo2021 <wuwbobo@outlook.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wuwbobo2021/android-bluetooth-serial-rs"
readme = "README.md"
description = "Android API wrapper handling Bluetooth classic RFCOMM/SPP connection."
keywords = ["bluetooth", "rfcomm", "spp", "android"]
categories = ["api-bindings", "hardware-support"]
[package.metadata.docs.rs]
default-target = "aarch64-linux-android"
targets = [
"aarch64-linux-android",
"armv7-linux-androideabi",
"x86_64-linux-android",
]
[dependencies]
log = "0.4"
jni-min-helper = { version = "0.3.1", features = [], default-features = false }
[lib]
name = "android_bluetooth_serial"
path = "lib.rs"