-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.18 KB
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
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "buttplug_server_hwmgr_serial"
version = "10.0.4"
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
description = "Buttplug Intimate Hardware Control Library - Core Library"
license = "BSD-3-Clause"
homepage = "http://buttplug.io"
repository = "https://github.com/buttplugio/buttplug.git"
readme = "./README.md"
keywords = ["usb", "serial", "hardware", "bluetooth", "teledildonics"]
edition = "2024"
exclude = ["examples/**"]
[lib]
name = "buttplug_server_hwmgr_serial"
path = "src/lib.rs"
test = true
doctest = true
doc = true
[dependencies]
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
futures = "0.3.32"
futures-util = "0.3.32"
log = "0.4.29"
tokio = { version = "1.50.0", features = ["sync", "time"] }
async-trait = "0.1.89"
uuid = { version = "1.22.0", features = ["serde", "v4"] }
dashmap = { version = "6.1.0", features = ["serde"] }
tracing = "0.1.44"
thiserror = "2.0.18"
serialport = { version = "4.8.1" }
tokio-util = "0.7.18"