Set up tauri project
This commit is contained in:
parent
c80325ea40
commit
6ac80ab679
39 changed files with 5754 additions and 100 deletions
23
gdn-app/src-tauri/Cargo.toml
Normal file
23
gdn-app/src-tauri/Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[package]
|
||||
name = "gdn-app"
|
||||
version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
|
||||
[lib]
|
||||
# The `_lib` suffix may seem redundant but it is necessary
|
||||
# to make the lib name unique and wouldn't conflict with the bin name.
|
||||
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
||||
name = "gdn_app_lib"
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { version = "2", features = [] }
|
||||
|
||||
[dependencies]
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
tauri = { workspace = true }
|
||||
tauri-plugin-opener = { workspace = true }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue