servo/components/bluetooth/Cargo.toml
2020-05-13 22:09:56 -07:00

25 lines
608 B
TOML

[package]
name = "bluetooth"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
edition = "2018"
publish = false
[lib]
name = "bluetooth"
path = "lib.rs"
[dependencies]
bitflags = "1.0"
bluetooth_traits = { path = "../bluetooth_traits" }
device = { git = "https://github.com/servo/devices", features = ["bluetooth-test"] }
embedder_traits = { path = "../embedder_traits" }
ipc-channel = "0.14"
log = "0.4"
servo_config = { path = "../config" }
servo_rand = { path = "../rand" }
uuid = { version = "0.8", features = ["v4"] }
[features]
native-bluetooth = ["device/bluetooth"]