Skip to content

Commit e527dc7

Browse files
committed
0.1.59
1 parent ea55b2a commit e527dc7

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge"
3-
version = "0.1.58"
3+
version = "0.1.59"
44
edition = "2021"
55
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
66
description = "Generate FFI bindings for safe interop between Rust and Swift."
@@ -14,10 +14,10 @@ default = []
1414
async = ["tokio", "once_cell"]
1515

1616
[build-dependencies]
17-
swift-bridge-build = {version = "0.1.58", path = "crates/swift-bridge-build"}
17+
swift-bridge-build = {version = "0.1.59", path = "crates/swift-bridge-build"}
1818

1919
[dependencies]
20-
swift-bridge-macro = {version = "0.1.58", path = "crates/swift-bridge-macro"}
20+
swift-bridge-macro = {version = "0.1.59", path = "crates/swift-bridge-macro"}
2121

2222
################################################################################
2323
# Optional features used for async function support.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-build"
3-
version = "0.1.58"
3+
version = "0.1.59"
44
edition = "2021"
55
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
66
description = "Parse Rust files for swift-bridge modules and generate the corresponding Swift and C code for them."
@@ -9,6 +9,6 @@ license = "Apache-2.0/MIT"
99

1010
[dependencies]
1111
proc-macro2 = "1"
12-
swift-bridge-ir = {version = "0.1.58", path = "../swift-bridge-ir"}
12+
swift-bridge-ir = {version = "0.1.59", path = "../swift-bridge-ir"}
1313
syn = {version = "1"}
1414
tempfile = "3.3"

crates/swift-bridge-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-cli"
3-
version = "0.1.58"
3+
version = "0.1.59"
44
edition = "2021"
55
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
66
description = "Parse Rust files for swift-bridge modules and generate the corresponding Swift and C code for them."
@@ -9,4 +9,4 @@ license = "Apache-2.0/MIT"
99

1010
[dependencies]
1111
clap = "3"
12-
swift-bridge-build = { version = "0.1.58", path = "../swift-bridge-build" }
12+
swift-bridge-build = { version = "0.1.59", path = "../swift-bridge-build" }

crates/swift-bridge-ir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-ir"
3-
version = "0.1.58"
3+
version = "0.1.59"
44
edition = "2021"
55
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
66
description = "Holds the data structures and logic for bridge module parsing and code generation."

crates/swift-bridge-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-macro"
3-
version = "0.1.58"
3+
version = "0.1.59"
44
edition = "2021"
55
keywords = ["swift", "ffi", "bindings", "ios", "mac"]
66
description = "Powers swift-bridge module code generation."
@@ -14,7 +14,7 @@ proc-macro = true
1414
proc-macro2 = "1"
1515
quote = "1"
1616
syn = { version = "1", features = ["full"] }
17-
swift-bridge-ir = {version = "0.1.58", path = "../swift-bridge-ir"}
17+
swift-bridge-ir = {version = "0.1.59", path = "../swift-bridge-ir"}
1818

1919
[dev-dependencies]
2020
swift-bridge = {path = "../../"}

0 commit comments

Comments
 (0)