snotes-deck/src-tauri/Cargo.toml

26 lines
698 B
TOML
Raw Normal View History

2024-04-07 21:31:08 +02:00
[package]
name = "snotes-deck"
version = "0.0.15"
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]
2024-11-15 23:56:47 +01:00
tauri-build = { version = "2", features = [] }
2024-04-07 21:31:08 +02:00
[dependencies]
2024-11-15 23:56:47 +01:00
tauri = { version = "2", features = [] }
2024-04-07 21:31:08 +02:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
libsnotes = { path = "../libsnotes" }
2024-04-18 10:16:06 +02:00
home = "0.5.9"
2024-11-15 23:56:47 +01:00
tauri-plugin-shell = "2"
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
2024-04-07 21:31:08 +02:00
[features]
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]