mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
50cebdb6d5
* chore(deps): update to tauri 2.8.0 * fmt * uipdate build * tauri 2.8.1 and bump toml in plugin-fs * tauri 2.8.1 * 2.8.2 * clippy [skip ci] --------- Co-authored-by: Tony <legendmastertony@gmail.com>
50 lines
1.6 KiB
TOML
50 lines
1.6 KiB
TOML
[package]
|
|
name = "tauri-plugin-fs"
|
|
version = "2.4.1"
|
|
description = "Access the file system."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
repository = { workspace = true }
|
|
links = "tauri-plugin-fs"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.platforms.support]
|
|
windows = { level = "full", notes = "Apps installed via MSI or NSIS in `perMachine` and `both` mode require admin permissions for write access in `$RESOURCES` folder" }
|
|
linux = { level = "full", notes = "No write access to `$RESOURCES` folder" }
|
|
macos = { level = "full", notes = "No write access to `$RESOURCES` folder" }
|
|
android = { level = "partial", notes = "Access is restricted to Application folder by default" }
|
|
ios = { level = "partial", notes = "Access is restricted to Application folder by default" }
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = ["build"] }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
toml = "0.9"
|
|
tauri-utils = { workspace = true, features = ["build"] }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_repr = "0.1"
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
url = { workspace = true }
|
|
anyhow = "1"
|
|
glob = { workspace = true }
|
|
# TODO: Remove `serialization-compat-6` in v3
|
|
notify = { version = "8", optional = true, features = [
|
|
"serde",
|
|
"serialization-compat-6",
|
|
] }
|
|
notify-debouncer-full = { version = "0.6", optional = true }
|
|
dunce = { workspace = true }
|
|
percent-encoding = "2"
|
|
|
|
[features]
|
|
watch = ["notify", "notify-debouncer-full"]
|