mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
23 lines
556 B
TOML
23 lines
556 B
TOML
[package]
|
|
name = "bluetooth"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "bluetooth"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
bitflags = "0.7"
|
|
bluetooth_traits = {path = "../bluetooth_traits"}
|
|
device = {git = "https://github.com/servo/devices", features = ["bluetooth-test"]}
|
|
ipc-channel = "0.5"
|
|
rand = "0.3"
|
|
util = {path = "../util"}
|
|
uuid = {version = "0.3.1", features = ["v4"]}
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
tinyfiledialogs = {git = "https://github.com/jdm/tinyfiledialogs"}
|