Skip to content

Commit

Permalink
Update UniFFI version
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniusnaumann committed Jan 26, 2024
1 parent 91a9dcc commit 279f0d6
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 29 deletions.
61 changes: 43 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ exclude = ["/readme", "/.github", "/testing", "/swift-examples", "*-DRAFT.md"]
[dependencies]
camino = "1.1.6"
cargo_metadata = "0.18.1"
clap = { version = "4.4.8", features = ["derive"] }
clap = { version = "4.4.18", features = ["derive"] }
convert_case = "0.6.0"
nonempty = "0.9.0"
serde = { version = "1.0.193", features = ["derive"] }
serde = { version = "1.0.195", features = ["derive"] }

# Templating
askama = "0.12.1"

# Terminal UI
console = "0.15.7"
console = "0.15.8"
dialoguer = { version = "0.11.0", default-features = false }
execute = "0.2.13"
indicatif = "0.17.7"

# FFI Bindings
uniffi_bindgen = { version = "0.25.2" }
uniffi_bindgen = { version = "0.26.1" }
# Allow testing with the latest dev version of UniFFI
# uniffi_bindgen = { version = "0.25.2", git = "https://github.com/mozilla/uniffi-rs.git" }

# Error Handling
anyhow = "1.0.75"
thiserror = "1.0.50"
anyhow = "1.0.79"
thiserror = "1.0.56"
lazy_static = "1.4.0"
itertools = "0.12.0"

Expand Down
2 changes: 1 addition & 1 deletion swift-examples/hello-world-macro/greeter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ crate-type = ["cdylib", "staticlib", "lib"]
name = "greeter"

[dependencies]
uniffi = "0.25"
uniffi = "0.26"
4 changes: 2 additions & 2 deletions swift-examples/hello-world/greeter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib", "staticlib", "lib"]
name = "greeter"

[dependencies]
uniffi = "0.25"
uniffi = "0.26"

[build-dependencies]
uniffi = { version = "0.25", features = ["build"] }
uniffi = { version = "0.26", features = ["build"] }
4 changes: 2 additions & 2 deletions templates/template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ crate-type = ["{{ lib_type }}", "lib"]
name = "{{ namespace }}"

[dependencies]
uniffi = "0.25"
uniffi = "0.26"

{% if !macro_only %}
[build-dependencies]
uniffi = { version = "0.25", features = ["build"] }
uniffi = { version = "0.26", features = ["build"] }
{%- endif %}

0 comments on commit 279f0d6

Please sign in to comment.