Files
archived-tauri-action/__fixtures__/example-with-tauri/src-tauri/Cargo.toml
Fabian-Lars c5c0e27d68 refactor: Merge workspace into single package. (#362)
* refactor repo into one package

* take pnpm for a test drive

* add tslib again

* fix dist path in action.yml

* split up core script. add eslint

* don't early return artifacts on macos

* up node version

* update deps

* fix change files

* rebuild dist
2023-02-06 13:44:53 +01:00

22 lines
481 B
TOML

[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = [ "you" ]
license = ""
repository = ""
default-run = "app"
edition = "2018"
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
tauri = { version = "1.0.0-rc.9", features = ["api-all", "updater"] }
[build-dependencies]
tauri-build = { version = "1.0.0-rc.8", features = [] }
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]