Skip to content

Commit

Permalink
0.1.21
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
chinedufn committed Jan 24, 2022
1 parent 62dd954 commit 490839e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swift-bridge"
version = "0.1.20"
version = "0.1.21"
edition = "2021"
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
description = "Generate FFI bindings for safe interop between Rust and Swift."
Expand All @@ -10,10 +10,10 @@ license = "Apache-2.0/MIT"
build = "build.rs"

[build-dependencies]
swift-bridge-build = {version = "0.1.20", path = "crates/swift-bridge-build"}
swift-bridge-build = {version = "0.1.21", path = "crates/swift-bridge-build"}

[dependencies]
swift-bridge-macro = {version = "0.1.20", path = "crates/swift-bridge-macro"}
swift-bridge-macro = {version = "0.1.21", path = "crates/swift-bridge-macro"}

[workspace]
members = [
Expand Down
6 changes: 3 additions & 3 deletions crates/swift-bridge-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swift-bridge-build"
version = "0.1.20"
version = "0.1.21"
edition = "2021"
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
description = "Parse Rust files for swift-bridge modules and generate the corresponding Swift and C code for them."
Expand All @@ -9,5 +9,5 @@ license = "Apache-2.0/MIT"

[dependencies]
proc-macro2 = "1"
swift-bridge-ir = {version = "0.1.20", path = "../swift-bridge-ir"}
syn = {version = "1"}
swift-bridge-ir = {version = "0.1.21", path = "../swift-bridge-ir"}
syn = {version = "1"}
2 changes: 1 addition & 1 deletion crates/swift-bridge-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swift-bridge-ir"
version = "0.1.20"
version = "0.1.21"
edition = "2021"
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
description = "Holds the data structures and logic for bridge module parsing and code generation."
Expand Down
4 changes: 2 additions & 2 deletions crates/swift-bridge-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swift-bridge-macro"
version = "0.1.20"
version = "0.1.21"
edition = "2021"
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
description = "Powers swift-bridge module code generation."
Expand All @@ -14,7 +14,7 @@ proc-macro = true
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["full"] }
swift-bridge-ir = {version = "0.1.20", path = "../swift-bridge-ir"}
swift-bridge-ir = {version = "0.1.21", path = "../swift-bridge-ir"}

[dev-dependencies]
swift-bridge = {path = "../../"}
Expand Down

0 comments on commit 490839e

Please sign in to comment.