mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
61edbbec0a
* Add support for notify-debouncer-full * Add fs watch to demo * Remove notify-debouncer-mini * Rename RawEvent to WatchEvent * Add full type definition for EventKind * Remove `track file ids` option from fs watcher * Update plugins/fs/guest-js/index.ts
28 lines
742 B
TOML
28 lines
742 B
TOML
[package]
|
|
name = "tauri-plugin-fs"
|
|
version = "2.0.0-alpha.7"
|
|
description = "Access the file system."
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_repr = "0.1"
|
|
tauri = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
url = { workspace = true }
|
|
anyhow = "1"
|
|
uuid = { version = "1", features = [ "v4" ] }
|
|
glob = "0.3"
|
|
notify = { version = "6", optional = true, features = [ "serde" ] }
|
|
notify-debouncer-full = { version = "0.3", optional = true }
|
|
|
|
[features]
|
|
watch = [ "notify", "notify-debouncer-full" ]
|