Skip to content

Commit

Permalink
Upgrade to Tauri 2.0.0-beta.22
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed Jun 2, 2024
1 parent e15222f commit c7878ec
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 32 deletions.
74 changes: 50 additions & 24 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tauri-specta-macros = { version = "=2.0.0-rc.5", path = "./macros" }
serde = "1"
serde_json = "1"
thiserror = "1"
tauri = { version = "=2.0.0-beta.19", no-default-features = true, features = [
tauri = { version = "=2.0.0-beta.22", no-default-features = true, features = [
"specta",
] }

Expand Down
2 changes: 1 addition & 1 deletion docs/v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
> However, it's safe to use as long as you lock your versions.
```bash
cargo add tauri@=2.0.0-beta.19
cargo add tauri@=2.0.0-beta.22
cargo add specta@=2.0.0-rc.12
cargo add tauri-specta@=2.0.0-rc.5 --features javascript,typescript
```
Expand Down
4 changes: 2 additions & 2 deletions examples/app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ rust-version = "1.57"
publish = false

[build-dependencies]
tauri-build = { version = "2.0.0-beta.13", features = [] }
tauri-build = { version = "2.0.0-beta.17", features = [] }

[dependencies]
serde_json = "1.0"
specta = "=2.0.0-rc.12"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "=2.0.0-beta.19", features = [] }
tauri = { version = "=2.0.0-beta.22", features = [] }
tauri-specta = { path = "../../../", features = ["typescript", "javascript"] }
tauri-plugin-os = "2.0.0-beta.3"
thiserror = "1.0.60"
Expand Down
4 changes: 2 additions & 2 deletions examples/custom-plugin/app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ repository = ""
edition = "2021"

[build-dependencies]
tauri-build = { version = "2.0.0-beta.13", features = [] }
tauri-build = { version = "2.0.0-beta.17", features = [] }

[dependencies]
tauri = { version = "=2.0.0-beta.19", features = [] }
tauri = { version = "=2.0.0-beta.22", features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tauri-plugin-specta-example = { path = "../../plugin" }
Expand Down
4 changes: 2 additions & 2 deletions examples/custom-plugin/plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ edition = "2021"
links = "tauri-plugin-specta-example"

[build-dependencies]
tauri-plugin = { version = "=2.0.0-beta.13", features = ["build"] }
tauri-plugin = { version = "=2.0.0-beta.17", features = ["build"] }

[dependencies]
rand = "0.8.5"
serde = "1"
specta = "=2.0.0-rc.12"
tauri = "=2.0.0-beta.19"
tauri = "=2.0.0-beta.22"
tauri-specta = { path = "../../../", features = ["typescript"] }

0 comments on commit c7878ec

Please sign in to comment.