Skip to content

Commit a33d7c0

Browse files
Merge pull request #340 from crabnebula-dev/feat/rc
feat: update to tauri v2 RC
2 parents 7560d68 + fdc437d commit a33d7c0

File tree

9 files changed

+312
-269
lines changed

9 files changed

+312
-269
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ tracing-core = "0.1"
2121
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2222
thiserror = "1.0"
2323
tokio-stream = "0.1"
24-
tauri = { version = "2.0.0-beta.24", features = ["tracing"] }
25-
tauri-build = "2.0.0-beta.19"
26-
tauri-plugin = "2.0.0-beta.19"
24+
tauri = { version = "2.0.0-rc.0", features = ["tracing"] }
25+
tauri-build = "2.0.0-rc.0"
26+
tauri-plugin = "2.0.0-rc.0"
2727
tonic = "0.10"
2828
prost = "0.12"
2929
prost-types = "0.12"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,20 @@ And that’s it! If you run your app now (cargo tauri dev), you will notice the
5252

5353
### Tauri v2
5454

55-
Ensure you have [Tauri](https://beta.tauri.app/guides/create/) set up correctly. Then install the Rust instrumentation from crates.io:
55+
Ensure you have [Tauri](https://v2.tauri.app/guides/create/) set up correctly. Then install the Rust instrumentation from crates.io:
5656

5757
```sh
58-
cargo add tauri-plugin-devtools@2.0.0-beta
58+
cargo add tauri-plugin-devtools@2.0.0-rc
5959
```
6060

61-
You also have to use Tauri **2.0.0-beta.1** (or later) so your `Cargo.toml` file should look as follows:
61+
You also have to use Tauri **2.0.0-rc.0** (or later) so your `Cargo.toml` file should look as follows:
6262

6363
```toml
6464
[dependencies]
65-
tauri-plugin-devtools = { git = "https://github.com/crabnebula-dev/devtools" }
66-
tauri = "2.0.0-beta.3"
65+
tauri-plugin-devtools = "2.0.0-rc"
66+
tauri = "2.0.0-rc"
6767
[build-dependencies]
68-
tauri-build = "2.0.0-beta"
68+
tauri-build = "2.0.0-rc"
6969
```
7070

7171
Then add the following snippet to your tauri initialization code:

crates/devtools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-devtools"
3-
version = "2.0.0-beta.5"
3+
version = "2.0.0-rc.0"
44
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
55
authors.workspace = true
66
edition.workspace = true

crates/devtools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Inspect, monitor, and understand your [Tauri](https://tauri.app) application wit
1111
Ensure you have [Tauri](https://tauri.app/v1/guides/getting-started/setup/) set up correctly. Then install the Rust instrumentation from crates.io:
1212

1313
```sh
14-
cargo add tauri-plugin-devtools@2.0.0-beta
14+
cargo add tauri-plugin-devtools@2.0.0-rc
1515
```
1616

1717
Then add the following snippet to your tauri initialization code:

examples/tauri/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "http-server src/ --port 1430"
99
},
1010
"devDependencies": {
11-
"@tauri-apps/cli": "^2.0.0-beta.0",
11+
"@tauri-apps/cli": "^2.0.0-rc.0",
1212
"http-server": "^14.1.1"
1313
}
14-
}
14+
}

0 commit comments

Comments
 (0)