blob: 93ed7d6e15184cba355b67914c5984d0860a44ff (
plain) (
blame)
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"
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 = { workspace = true }
bluetooth_traits = { path = "../bluetooth_traits" }
device = { git = "https://github.com/servo/devices", features = ["bluetooth-test"], rev = "cb28c4725ffbfece99dab842d17d3e8c50774778" }
embedder_traits = { path = "../embedder_traits" }
ipc-channel = { workspace = true }
log = { workspace = true }
servo_config = { path = "../config" }
servo_rand = { path = "../rand" }
uuid = { workspace = true }
[features]
native-bluetooth = ["device/bluetooth"]
|