forked from kaegi/bluetooth-serial-port
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
26 lines (22 loc) · 851 Bytes
/
Cargo.toml
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
[package]
name = "bluetooth-serial-port"
version = "0.6.0"
authors = ["Christopher James Halse Rogers <[email protected]>", "kaegi <[email protected]>", "Evgeniy A. Dushistov <[email protected]>"]
description = "Interact with Bluetooth devices via RFCOMM channels"
repository = "https://github.com/Dushistov/bluetooth-serial-port"
readme = "README.md"
keywords = ["bluetooth", "RFCOMM", "SDP", "SPP"]
license = "MIT"
edition = "2018"
[dependencies]
mio = { version = "0.8", features = ["os-poll", "os-ext"] }
nix = "0.24.1"
libc = "0.2"
enum_primitive = "0.1"
[features]
# Feature to disable any tests which rely on hardware availability
# eg: tests which attempt to create a BtSocket.
test_without_hardware = []
[badges]
travis-ci = { repository = "Dushistov/bluetooth-serial-port" }
appveyor = { repository = "Dushistov/bluetooth-serial-port" }