Skip to content

Commit

Permalink
build: Update deps/Version/CHANGELOG for 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed May 15, 2021
1 parent aa6e28e commit f9734c3
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 57 deletions.
10 changes: 10 additions & 0 deletions ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 2.0.2 (2021/05/15)

## Features

- CI now builds for all platforms, so we can upload artifacts for other FFI systems

## Bugfixes

- #76: Remove Drop impls that could cause crashes if logging is turned on.

# 2.0.1 (2021/04/24)

## Bugfixes
Expand Down
96 changes: 49 additions & 47 deletions ffi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buttplug-rs-ffi"
version = "2.0.1"
version = "2.0.2"
description = "FFI Layer for buttplug-rs. Used by other languages for implementing buttplug-rs bindings."
authors = ["Kyle Machulis <[email protected]>"]
edition = "2018"
Expand All @@ -14,29 +14,29 @@ wasm = ["wasm-bindgen", "uuid", "web-sys", "js-sys", "tracing-wasm", "buttplug/w
[dependencies]
buttplug = { version = "3.0.3", default-features = false, features = ["client", "server", "serialize-json"] }
# buttplug = { path = "../../buttplug-rs/buttplug", default-features = false, features = ["client", "server", "serialize-json"] }
tracing-subscriber = "0.2.17"
futures = "0.3.14"
tracing = "0.1.25"
tracing-subscriber = "0.2.18"
futures = "0.3.15"
tracing = "0.1.26"
dashmap = "4.0.2"
libc = "0.2.93"
libc = "0.2.94"
prost = "0.7.0"
lazy_static = "1.4.0"
wasm-bindgen = { version = "0.2.73", features = ["serde-serialize"], optional = true }
wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional = true }
# Needed to build valico with wasm-bindgen
uuid = { version = "0.8.2", features = ["wasm-bindgen"], optional = true }
async-lock = "2.4.0"
js-sys = { version = "0.3.50", optional = true }
js-sys = { version = "0.3.51", optional = true }
tracing-wasm = { version = "0.2.0", optional = true }
async-trait = { version = "0.1.50", optional = true }
wasm-bindgen-futures = { version = "0.4.23", optional = true }
wasm-bindgen-futures = { version = "0.4.24", optional = true }
tokio = { version = "1.5.0", features = ["sync", "rt-multi-thread"] }
log-panics = { version = "2.0.0", optional = true, features = ["with-backtrace"] }
console_error_panic_hook = { version = "0.1.6", optional = true }
futures-timer = "3.0.2"

[build-dependencies]
prost-build = "0.7.0"
vergen = "5.1.4"
vergen = "5.1.5"
anyhow = "1.0.40"

[lib]
Expand All @@ -45,7 +45,7 @@ path = "src/lib.rs"
crate-type = ["cdylib"]

[dependencies.web-sys]
version = "0.3.50"
version = "0.3.51"
# path = "../../wasm-bindgen/crates/web-sys"
#git = "https://github.com/rustwasm/wasm-bindgen"
optional = true
Expand Down

0 comments on commit f9734c3

Please sign in to comment.