Skip to content

Commit 98ac1cd

Browse files
🎉 Release v2.0.0-rc.18 w/ Tauri 2.0.0-rc.8
1 parent 86ceb90 commit 98ac1cd

6 files changed

Lines changed: 31 additions & 38 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tauri-specta"
33
description = "Completely typesafe Tauri commands"
4-
version = "2.0.0-rc.17"
4+
version = "2.0.0-rc.18"
55
authors = ["Oscar Beaumont <oscar@otbeaumont.me>"]
66
edition = "2021"
77
license = "MIT"
@@ -61,14 +61,7 @@ todo = { level = "warn", priority = -1 }
6161
panic_in_result_fn = { level = "warn", priority = -1 }
6262

6363
[workspace.dependencies]
64-
tauri = { version = "=2.0.0-rc.3" }
64+
tauri = { version = "=2.0.0-rc.8" }
6565
specta = { version = "=2.0.0-rc.20" }
6666
specta-typescript = { version = "0.0.7" }
6767
specta-jsdoc = { version = "0.0.7" }
68-
69-
# [patch.crates-io]
70-
# tauri = { git = "https://github.com/oscartbeaumont/tauri.git", rev = "ddc64b706a7f2db271d40e9b216187b1aa153efa" }
71-
# tauri-build = { git = "https://github.com/oscartbeaumont/tauri.git", rev = "ddc64b706a7f2db271d40e9b216187b1aa153efa" }
72-
# specta = { path = "../specta/specta" }
73-
# specta-typescript = { path = "../specta/specta-typescript" }
74-
# specta-jsdoc = { path = "../specta/specta-jsdoc" }

examples/app/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rust-version = "1.57"
1010
publish = false
1111

1212
[build-dependencies]
13-
tauri-build = { version = "=2.0.0-rc.3", features = [] }
13+
tauri-build = { version = "=2.0.0-rc.7", features = [] }
1414

1515
[dependencies]
1616
serde_json = "1.0"

examples/custom-plugin/app/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = ""
88
edition = "2021"
99

1010
[build-dependencies]
11-
tauri-build = { version = "=2.0.0-rc.3", features = [] }
11+
tauri-build = { version = "=2.0.0-rc.7", features = [] }
1212

1313
[dependencies]
1414
tauri = { workspace = true, features = [] }

examples/custom-plugin/plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
links = "tauri-plugin-specta-example"
66

77
[build-dependencies]
8-
tauri-plugin = { version = "=2.0.0-rc.3", features = ["build"] }
8+
tauri-plugin = { version = "=2.0.0-rc.7", features = ["build"] }
99

1010
[dependencies]
1111
rand = "0.8.5"

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
//!
1515
//! ```sh
1616
//! # Always required
17-
//! cargo add tauri@=2.0.0-rc.3 specta@=2.0.0-rc.20
17+
//! cargo add tauri@=2.0.0-rc.8 specta@=2.0.0-rc.20
1818
//!
1919
//! # Typescript
2020
//! cargo add specta-typescript@0.0.7
21-
//! cargo add tauri-specta@=2.0.0-rc.17 --features derive,typescript
21+
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,typescript
2222
//!
2323
//! # JSDoc
2424
//! cargo add specta-jsdoc@0.0.7
25-
//! cargo add tauri-specta@=2.0.0-rc.17 --features derive,javascript
25+
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,javascript
2626
//! ```
2727
//!
2828
//! ## Features

0 commit comments

Comments
 (0)