mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
9f545c65ad
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
36 lines
978 B
TOML
36 lines
978 B
TOML
[package]
|
|
name = "tauri-plugin-fs"
|
|
version = "2.0.0-beta.5"
|
|
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" ]
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = [ "build" ] }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { 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" ]
|