mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
903361100c
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
25 lines
677 B
TOML
25 lines
677 B
TOML
[package]
|
|
name = "tauri-plugin-fs"
|
|
version = "2.0.0-alpha.2"
|
|
description = "Access the file system."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = [ "tauri/dox" ]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = "1"
|
|
uuid = { version = "1", features = [ "v4" ] }
|
|
glob = "0.3"
|
|
notify = { version = "5", optional = true, features = [ "serde" ] }
|
|
notify-debouncer-mini = { version = "0.2.1", optional = true, features = [ "serde" ] }
|
|
|
|
[features]
|
|
watch = [ "notify", "notify-debouncer-mini" ]
|