mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
31 lines
834 B
TOML
31 lines
834 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"}
|
|
embedder_traits = {path = "../embedder_traits"}
|
|
ipc-channel = "0.11"
|
|
log = "0.4"
|
|
servo_config = {path = "../config"}
|
|
servo_rand = {path = "../rand"}
|
|
uuid = {version = "0.6", features = ["v4"]}
|
|
|
|
[features]
|
|
disable-native-bluetooth = []
|
|
|
|
[target.'cfg(feature = "disable-native-bluetooth")'.dependencies]
|
|
device = {git = "https://github.com/servo/devices", default-features = false, features = ["bluetooth-test"]}
|
|
|
|
[target.'cfg(not(feature = "disable-native-bluetooth"))'.dependencies]
|
|
device = {git = "https://github.com/servo/devices", features = ["bluetooth-test"]}
|