Skip to content

Commit 59bff34

Browse files
committed
0.1.40
1 parent 54b9c09 commit 59bff34

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge"
3-
version = "0.1.39"
3+
version = "0.1.40"
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.39", path = "crates/swift-bridge-build"}
17+
swift-bridge-build = {version = "0.1.40", path = "crates/swift-bridge-build"}
1818

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

2222
################################################################################
2323
# Optional features used for async function support.

crates/swift-bridge-build/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-build"
3-
version = "0.1.39"
3+
version = "0.1.40"
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.39", path = "../swift-bridge-ir"}
12+
swift-bridge-ir = {version = "0.1.40", path = "../swift-bridge-ir"}
1313
syn = {version = "1"}
1414
tempfile = "3.3"

crates/swift-bridge-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-cli"
3-
version = "0.1.39"
3+
version = "0.1.40"
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.39", path = "../swift-bridge-build" }
12+
swift-bridge-build = { version = "0.1.40", path = "../swift-bridge-build" }

crates/swift-bridge-ir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-ir"
3-
version = "0.1.39"
3+
version = "0.1.40"
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swift-bridge-macro"
3-
version = "0.1.39"
3+
version = "0.1.40"
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.39", path = "../swift-bridge-ir"}
17+
swift-bridge-ir = {version = "0.1.40", path = "../swift-bridge-ir"}
1818

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

0 commit comments

Comments
 (0)