Skip to content

Commit

Permalink
0.1.55
Browse files Browse the repository at this point in the history
  • Loading branch information
chinedufn committed Apr 29, 2024
1 parent 87dbea3 commit ef01d21
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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.54"
version = "0.1.55"
edition = "2021"
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
description = "Generate FFI bindings for safe interop between Rust and Swift."
Expand All @@ -14,10 +14,10 @@ default = []
async = ["tokio", "once_cell"]

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

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

################################################################################
# Optional features used for async function support.
Expand Down
4 changes: 2 additions & 2 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.54"
version = "0.1.55"
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,6 +9,6 @@ license = "Apache-2.0/MIT"

[dependencies]
proc-macro2 = "1"
swift-bridge-ir = {version = "0.1.54", path = "../swift-bridge-ir"}
swift-bridge-ir = {version = "0.1.55", path = "../swift-bridge-ir"}
syn = {version = "1"}
tempfile = "3.3"
4 changes: 2 additions & 2 deletions crates/swift-bridge-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swift-bridge-cli"
version = "0.1.54"
version = "0.1.55"
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,4 +9,4 @@ license = "Apache-2.0/MIT"

[dependencies]
clap = "3"
swift-bridge-build = { version = "0.1.54", path = "../swift-bridge-build" }
swift-bridge-build = { version = "0.1.55", path = "../swift-bridge-build" }
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.54"
version = "0.1.55"
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.54"
version = "0.1.55"
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.54", path = "../swift-bridge-ir"}
swift-bridge-ir = {version = "0.1.55", path = "../swift-bridge-ir"}

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

0 comments on commit ef01d21

Please sign in to comment.