Skip to content

Commit

Permalink
build: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Mar 17, 2024
1 parent f5129ca commit 06cb018
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions buttplug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ buttplug_derive = "0.8.0"
# buttplug_derive = { path = "../buttplug_derive" }
futures = "0.3.30"
futures-util = "0.3.30"
async-trait = "0.1.77"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.112"
async-trait = "0.1.78"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_repr = "0.1.18"
uuid = { version = "1.7.0", features = ["serde"] }
url = "2.5.0"
Expand All @@ -69,37 +69,37 @@ once_cell = "1.19.0"
paste = "1.0.14"
lazy_static = "1.4.0"
byteorder = "1.5.0"
thiserror = "1.0.56"
thiserror = "1.0.58"
cfg-if = "1.0.0"
tracing = "0.1.40"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.18", features = ["json"] }
dashmap = "5.5.3"
displaydoc = "0.2.4"
tokio = { version = "1.35.1", features = ["sync", "macros", "io-util"] }
tokio = { version = "1.36.0", features = ["sync", "macros", "io-util"] }
async-stream = "0.3.5"
prost = "0.12.3"
tokio-util = "0.7.10"
reqwest = { version = "0.11.23", default-features = false, optional = true, features = ["rustls-tls"] }
serde-aux = "4.4.0"
reqwest = { version = "0.11.26", default-features = false, optional = true, features = ["rustls-tls"] }
serde-aux = "4.5.0"
getset = "0.1.2"
os_info = "3.7.0"
os_info = "3.8.1"
jsonschema = { version = "0.17.1", default-features = false }
derivative = "2.2.0"
tokio-stream = "0.1.14"
tokio-stream = "0.1.15"
instant = "0.1.12"
regex = "1.10.3"
tokio-tungstenite = { version = "0.21.0", features = ["rustls-tls-webpki-roots"], optional = true }
rustls = { version = "0.22.2", optional = true }
aes = { version = "0.8.3" }
aes = { version = "0.8.4" }
ecb = { version = "0.1.2", features = ["std"] }
rand = { version = "0.8.5" }
sha2 = { version = "0.10.8", features = ["std"] }

[dev-dependencies]
serde_yaml = "0.9.30"
serde_yaml = "0.9.33"
test-case = "3.3.1"
tokio = { version = "1.35.1", features = ["io-std", "rt"] }
tokio = { version = "1.36.0", features = ["io-std", "rt"] }
tracing-log = { version = "0.2.0" }

[build-dependencies]
Expand All @@ -111,27 +111,27 @@ windows = { version = "0.52.0", features = ["Devices_Bluetooth", "Foundation"] }
serialport = { version = "4.3.0", optional = true }
# Linux hidraw is needed here in order to work with the lovense dongle. libusb breaks it on linux.
# Other platforms are not affected by the feature changes.
hidapi = { version = "2.5.0", default-features = false, features = ["linux-static-hidraw", "illumos-static-libusb"], optional = true }
hidapi = { version = "2.6.1", default-features = false, features = ["linux-static-hidraw", "illumos-static-libusb"], optional = true }

[target.'cfg(target_os = "linux")'.dependencies]
serialport = { version = "4.3.0", optional = true }
# Linux hidraw is needed here in order to work with the lovense dongle. libusb breaks it on linux.
# Other platforms are not affected by the feature changes.
hidapi = { version = "2.5.0", default-features = false, features = ["linux-static-hidraw", "illumos-static-libusb"], optional = true }
hidapi = { version = "2.6.1", default-features = false, features = ["linux-static-hidraw", "illumos-static-libusb"], optional = true }

[target.'cfg(target_os = "macos")'.dependencies]
serialport = { version = "4.3.0", optional = true }
# Linux hidraw is needed here in order to work with the lovense dongle. libusb breaks it on linux.
# Other platforms are not affected by the feature changes.
hidapi = { version = "2.5.0", default-features = false, features = ["linux-static-hidraw", "illumos-static-libusb"], optional = true }
hidapi = { version = "2.6.1", default-features = false, features = ["linux-static-hidraw", "illumos-static-libusb"], optional = true }

[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = { version = "0.2.90", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4.40" }
wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4.42" }
wasmtimer = { version = "0.2.0" }

[dependencies.web-sys]
version = "0.3.67"
version = "0.3.69"
# path = "../../wasm-bindgen/crates/web-sys"
#git = "https://github.com/rustwasm/wasm-bindgen"
optional = true
Expand Down
2 changes: 1 addition & 1 deletion buttplug_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ edition = "2021"
proc-macro = true

[dependencies]
syn = "2.0.48"
syn = "2.0.53"
quote = "1.0.35"

0 comments on commit 06cb018

Please sign in to comment.