Skip to content

Commit f476697

Browse files
committed
Sync wasm3 and wasm3-sys minor version
1 parent ccbb711 commit f476697

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

Cargo.toml

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm3"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Lukas Tobias Wirth <[email protected]>"]
55
edition = "2018"
66
description = "Rust bindings for wasm3"
@@ -11,6 +11,9 @@ readme = "README.md"
1111
categories = ["api-bindings"]
1212
exclude = ["examples/*", "tests/*"]
1313

14+
[workspace]
15+
members = ["wasm3-sys"]
16+
1417
[features]
1518
default = ["wasi", "std", "use-32bit-slots"]
1619

@@ -20,22 +23,20 @@ use-32bit-slots = ["ffi/use-32bit-slots"]
2023

2124
build-bindgen = ["ffi/build-bindgen"]
2225

23-
[profile.release]
24-
opt-level = 3
25-
lto = true
26-
2726
[dependencies]
2827
cty = "0.2"
29-
ffi = { version = "0.1.2", package = "wasm3-sys" }
28+
29+
[dependencies.ffi]
30+
version = "0.3.0"
31+
path = "./wasm3-sys"
32+
package = "wasm3-sys"
3033

3134
[dev-dependencies]
3235
trybuild = "1.0"
3336

37+
[profile.release]
38+
opt-level = 3
39+
lto = true
40+
3441
[package.metadata.docs.rs]
3542
all-features = true
36-
37-
[patch.'crates-io']
38-
wasm3-sys = { path = "wasm3-sys" }
39-
40-
[workspace]
41-
members = ["wasm3-sys"]

wasm3-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasm3-sys"
3-
version = "0.1.2"
3+
version = "0.3.0"
44
authors = ["Lukas Tobias Wirth <[email protected]>"]
55
edition = "2018"
66
description = "Raw ffi bindings for wasm3"

0 commit comments

Comments
 (0)