-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Release v2.0.0-rc.18 w/ Tauri 2.0.0-rc.8
- Loading branch information
1 parent
86ceb90
commit 98ac1cd
Showing
6 changed files
with
31 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "tauri-specta" | ||
description = "Completely typesafe Tauri commands" | ||
version = "2.0.0-rc.17" | ||
version = "2.0.0-rc.18" | ||
authors = ["Oscar Beaumont <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -61,14 +61,7 @@ todo = { level = "warn", priority = -1 } | |
panic_in_result_fn = { level = "warn", priority = -1 } | ||
|
||
[workspace.dependencies] | ||
tauri = { version = "=2.0.0-rc.3" } | ||
tauri = { version = "=2.0.0-rc.8" } | ||
specta = { version = "=2.0.0-rc.20" } | ||
specta-typescript = { version = "0.0.7" } | ||
specta-jsdoc = { version = "0.0.7" } | ||
|
||
# [patch.crates-io] | ||
# tauri = { git = "https://github.com/oscartbeaumont/tauri.git", rev = "ddc64b706a7f2db271d40e9b216187b1aa153efa" } | ||
# tauri-build = { git = "https://github.com/oscartbeaumont/tauri.git", rev = "ddc64b706a7f2db271d40e9b216187b1aa153efa" } | ||
# specta = { path = "../specta/specta" } | ||
# specta-typescript = { path = "../specta/specta-typescript" } | ||
# specta-jsdoc = { path = "../specta/specta-jsdoc" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,15 @@ | |
//! | ||
//! ```sh | ||
//! # Always required | ||
//! cargo add tauri@=2.0.0-rc.3 specta@=2.0.0-rc.20 | ||
//! cargo add tauri@=2.0.0-rc.8 specta@=2.0.0-rc.20 | ||
//! | ||
//! # Typescript | ||
//! cargo add [email protected] | ||
//! cargo add tauri-specta@=2.0.0-rc.17 --features derive,typescript | ||
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,typescript | ||
//! | ||
//! # JSDoc | ||
//! cargo add [email protected] | ||
//! cargo add tauri-specta@=2.0.0-rc.17 --features derive,javascript | ||
//! cargo add tauri-specta@=2.0.0-rc.18 --features derive,javascript | ||
//! ``` | ||
//! | ||
//! ## Features | ||
|