2024-04-07 21:31:08 +02:00
|
|
|
[package]
|
|
|
|
name = "snotes-deck"
|
|
|
|
version = "0.0.0"
|
2024-04-09 19:54:49 +02:00
|
|
|
description = "A simple little Note App"
|
2024-04-07 21:31:08 +02:00
|
|
|
authors = ["you"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1", features = [] }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tauri = { version = "1", features = ["shell-open"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
|
|
|
libsnotes = { path = "../libsnotes" }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|