forked from buttplugio/buttplug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 1018 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (21 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "buttplug-examples"
version = "0.1.0"
authors = ["Melody Horn <melody@boringcactus.com>", "Kyle Machulis <kyle@nonpolynomial.com>"]
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
buttplug_core = { path = "../crates/buttplug_core" }
buttplug_client = { path = "../crates/buttplug_client" }
buttplug_client_in_process = { path = "../crates/buttplug_client_in_process" }
buttplug_server = { path = "../crates/buttplug_server" }
buttplug_server_device_config = { path = "../crates/buttplug_server_device_config" }
buttplug_server_hwmgr_btleplug = { path = "../crates/buttplug_server_hwmgr_btleplug" }
buttplug_transport_websocket_tungstenite = { path = "../crates/buttplug_transport_websocket_tungstenite" }
anyhow = "1.0.102"
tracing-subscriber = "0.3.23"
futures = "0.3.32"
strum = "0.28.0"
tokio = { version = "1.50.0", features = ["io-std", "io-util", "rt-multi-thread", "macros"] }
log = "0.4.29"
tracing = "0.1.44"