mirror of
https://github.com/tauri-apps/tauri-plugin-persisted-scope.git
synced 2026-02-04 02:41:20 +01:00
Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/5014287143 Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
21 lines
644 B
TOML
21 lines
644 B
TOML
[package]
|
|
name = "tauri-plugin-persisted-scope"
|
|
version = "1.0.0"
|
|
description = "Save filesystem and asset scopes and restore them when the app is reopened."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
aho-corasick = "1.0"
|
|
bincode = "1"
|
|
tauri-plugin-fs = { path = "../fs", version = "1.0.0" }
|