mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
25 lines
684 B
TOML
25 lines
684 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 = { 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"]
|