Skip to content

Commit 077f321

Browse files
committed
bump uniffi-rs version
Signed-off-by: Martynas Gurskas <[email protected]>
1 parent b6cda19 commit 077f321

File tree

6 files changed

+58
-48
lines changed

6 files changed

+58
-48
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### UNRELEASED+v0.25.0
2+
3+
----
4+
5+
- Dereference optional objects in the generated bindings
6+
17
#### v0.2.2+v0.25.0
28

39
----

Cargo.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ members = [
55
]
66

77
resolver = "2"
8+
9+
[workspace.dependencies]
10+
uniffi = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag="v0.3.1+v0.25.0" }
11+
uniffi_bindgen = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag="v0.3.1+v0.25.0" }

bindgen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ paste = "1"
1313
serde = "1"
1414
topological-sort = "0.2.2"
1515
textwrap = "0.16.0"
16-
uniffi_bindgen = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
16+
uniffi_bindgen = { workspace = true }

fixtures/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ edition = "2021"
77
crate-type = ["cdylib", "lib"]
88

99
[dependencies]
10-
uniffi-example-arithmetic = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
11-
uniffi-example-callbacks = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
12-
uniffi-example-custom-types = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
13-
uniffi-example-geometry = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
14-
uniffi-example-rondpoint = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
15-
uniffi-example-sprites = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
16-
uniffi-example-todolist = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
17-
uniffi-example-traits = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
18-
uniffi-fixture-callbacks = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
19-
uniffi-fixture-coverall = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
20-
uniffi-fixture-docstring = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
21-
uniffi-fixture-time = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
22-
uniffi-fixture-trait-methods = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
23-
uniffi-custom-types-builtin = { path = "custom-types-builtin" }
10+
uniffi-example-arithmetic = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
11+
uniffi-example-callbacks = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
12+
uniffi-example-custom-types = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
13+
uniffi-example-geometry = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
14+
uniffi-example-rondpoint = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
15+
uniffi-example-sprites = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
16+
uniffi-example-todolist = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
17+
uniffi-example-traits = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
18+
uniffi-fixture-callbacks = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
19+
uniffi-fixture-coverall = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
20+
uniffi-fixture-docstring = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
21+
uniffi-fixture-time = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
22+
uniffi-fixture-trait-methods = { git = "https://github.com/NordSecurity/uniffi-rs.git", tag = "v0.3.1+v0.25.0" }
23+
uniffi-custom-types-builtin = { path = "custom-types-builtin" }

fixtures/custom-types-builtin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ crate-type = ["lib", "cdylib"]
88
name = "uniffi_cpp_custom_types_builtin"
99

1010
[dependencies]
11-
uniffi = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0" }
11+
uniffi = { workspace = true }
1212
once_cell = "1.12"
1313
paste = "1.0"
1414
thiserror = "1.0"
1515

1616
[build-dependencies]
17-
uniffi = { git = "https://github.com/NordSecurity/uniffi-rs.git", branch = "nordsec.0.25.0", features = ["build"] }
17+
uniffi = { workspace = true, features = ["build"] }

0 commit comments

Comments
 (0)