23 lines
634 B
TOML
23 lines
634 B
TOML
[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
|