Skip to content

Commit

Permalink
Bump and use the main crate version for proc-macro
Browse files Browse the repository at this point in the history
  • Loading branch information
oxalica committed Feb 16, 2023
1 parent c62be47 commit 910deed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-ffi"
version = "0.4.0"
version = "0.4.1"
edition = "2018"
description = "FFI-compatible `Future`s"
keywords = ["ffi", "async", "futures"]
Expand All @@ -13,7 +13,7 @@ rust-version = "1.49" # 1.48 doesn't support `ManuallyDrop` in union.

[dependencies]
abi_stable = { version = "0.11", default-features = false, optional = true }
macros = { version = "0.1.0", package = "async-ffi-macros", path = "./macros", optional = true }
macros = { version = "=0.4.1", package = "async-ffi-macros", path = "./macros", optional = true }

[dev-dependencies]
tokio = { version = "1.4.0", features = ["macros", "rt-multi-thread", "sync", "time"] }
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-ffi-macros"
version = "0.1.0"
version = "0.4.1"
edition = "2018" # Follows async-ffi
description = "Macros for async-ffi"
keywords = ["ffi", "async", "futures"]
Expand Down

0 comments on commit 910deed

Please sign in to comment.