Skip to content

Commit

Permalink
d /Users/oscar/Desktop/specta; clear; lazygit
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed Jan 12, 2025
1 parent 12e6774 commit d5fb18f
Show file tree
Hide file tree
Showing 10 changed files with 1,388 additions and 1,078 deletions.
1,234 changes: 813 additions & 421 deletions Cargo.lock

Large diffs are not rendered by default.

19 changes: 13 additions & 6 deletions Cargo.toml
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.20"
version = "2.0.0-rc.21"
authors = ["Oscar Beaumont <oscar@otbeaumont.me>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -34,7 +34,7 @@ specta-jsdoc = { workspace = true, optional = true }
tauri-specta-macros = { version = "=2.0.0-rc.16", optional = true, path = "./macros" }
serde = "1"
serde_json = "1"
thiserror = "1"
thiserror = "2"
tauri = { workspace = true, features = ["specta"] }

# Private
Expand All @@ -61,9 +61,16 @@ todo = { level = "warn", priority = -1 }
panic_in_result_fn = { level = "warn", priority = -1 }

[workspace.dependencies]
tauri = { version = "2.0" }
tauri = { version = "2.2" }
tauri-build = { version = "2.0" }
tauri-plugin = { version = "2.0" }
specta = { version = "=2.0.0-rc.20" }
specta-typescript = { version = "0.0.7" }
specta-jsdoc = { version = "0.0.7" }
specta = { version = "=2.0.0-rc.21" }
specta-typescript = { version = "0.0.8" }
specta-jsdoc = { version = "0.0.8" }

[patch.crates-io]
tauri = { path = "/Users/oscar/Desktop/tauri/crates/tauri" }
specta = { path = "/Users/oscar/Desktop/specta/specta" }
specta-typescript = { path = "/Users/oscar/Desktop/specta/specta-typescript" }
specta-jsdoc = { path = "/Users/oscar/Desktop/specta/specta-jsdoc" }
specta-util = { path = "/Users/oscar/Desktop/specta/specta-util" }
8 changes: 4 additions & 4 deletions examples/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.0.3"
"@tauri-apps/api": "^2.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.3",
"typescript": "^5.6.3",
"vite": "^5.4.9"
"@tauri-apps/cli": "^2.2.2",
"typescript": "^5.7.3",
"vite": "^6.0.7"
}
}
12 changes: 6 additions & 6 deletions examples/custom-plugin/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
},
"license": "MIT",
"dependencies": {
"@tauri-apps/api": "^2.0.3",
"solid-js": "^1.9.2",
"@tauri-apps/api": "^2.2.0",
"solid-js": "^1.9.4",
"tauri-specta-custom-plugin": "workspace:*"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.3",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-solid": "^2.10.2"
"@tauri-apps/cli": "^2.2.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-solid": "^2.11.0"
}
}
2 changes: 1 addition & 1 deletion examples/custom-plugin/plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"codegen": "cargo test && pnpm build"
},
"devDependencies": {
"typescript": "^5.6.3"
"typescript": "^5.7.3"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"version": "0.0.0",
"scripts": {},
"dependencies": {
"@tauri-apps/api": "^2.0.3"
"@tauri-apps/api": "^2.2.0"
}
}
Loading

0 comments on commit d5fb18f

Please sign in to comment.