Skip to content

Commit

Permalink
publish 0.13.0 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepyakin committed Mar 10, 2024
1 parent 89de59a commit 31c04e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "binaryen"
# See docs/RELEASING.md
version = "0.12.1"
version = "0.13.0"
authors = ["Sergey Pepyakin <s.pepyakin@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -12,7 +12,7 @@ categories = ["api-bindings"]
keywords = ["binaryen", "webassembly", "wasm", "compiler"]

[dependencies]
binaryen-sys = { path = "binaryen-sys", version = "0.12.0" }
binaryen-sys = { path = "binaryen-sys", version = "0.13.0" }

[dev-dependencies]
rand = "0.8.0"
Expand Down
5 changes: 3 additions & 2 deletions binaryen-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "binaryen-sys"
# See docs/RELEASING.md
version = "0.12.1"
version = "0.13.0"
authors = ["Sergey Pepyakin <s.pepyakin@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/pepyakin/binaryen-rs"
homepage = "https://github.com/pepyakin/binaryen-rs"
description = "Bindings to the binaryen library"
categories = ["external-ffi-bindings"]
exclude = [
"binaryen/test/*"
"binaryen/test/*",
"!binaryen/test/lit"
]

[build-dependencies]
Expand Down
1 change: 1 addition & 0 deletions binaryen-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ fn main() {
let dst = cmake::Config::new("binaryen")
.define("BUILD_STATIC_LIB", "ON")
.define("ENABLE_WERROR", "OFF")
.define("BUILD_TESTS", "OFF")
.build();

println!("cargo:rustc-link-search=native={}/build/lib", dst.display());
Expand Down

0 comments on commit 31c04e7

Please sign in to comment.