Buttplug sex toy control library
1[package]
2name = "buttplug_server_device_config"
3version = "10.0.0-beta2"
4authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
5description = "Buttplug Intimate Hardware Control Library - Server Device Config Library"
6license = "BSD-3-Clause"
7homepage = "http://buttplug.io"
8repository = "https://github.com/buttplugio/buttplug.git"
9readme = "./README.md"
10keywords = ["usb", "serial", "hardware", "bluetooth", "teledildonics"]
11edition = "2024"
12exclude = ["examples/**"]
13
14[lib]
15name = "buttplug_server_device_config"
16path = "src/lib.rs"
17test = true
18doctest = true
19doc = true
20
21[dependencies]
22buttplug_derive = "0.8.1"
23buttplug_core = { path = "../buttplug_core" }
24# buttplug_derive = { path = "../buttplug_derive" }
25futures = "0.3.31"
26futures-util = "0.3.31"
27serde = { version = "1.0.219", features = ["derive"] }
28serde_json = "1.0.140"
29serde_repr = "0.1.20"
30thiserror = "2.0.12"
31displaydoc = "0.2.5"
32dashmap = { version = "6.1.0", features = ["serde"] }
33log = "0.4.27"
34getset = "0.1.6"
35jsonschema = { version = "0.30.0", default-features = false }
36uuid = { version = "1.17.0", features = ["serde", "v4"] }
37strum_macros = "0.27.1"
38strum = "0.27.1"
39
40[build-dependencies]
41serde_yaml = "0.9.34"
42serde_json = "1.0.140"
43serde = { version = "1.0.219", features = ["derive"] }
44buttplug_core = { path = "../buttplug_core" }
45
46[dev-dependencies]
47test-case = "3.3.1"