123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- [package]
- name = "tauri-utils"
- version = "2.0.0-alpha.6"
- description = "Utilities for Tauri"
- exclude = [ "CHANGELOG.md", "/target" ]
- readme = "README.md"
- authors = { workspace = true }
- homepage = { workspace = true }
- repository = { workspace = true }
- categories = { workspace = true }
- license = { workspace = true }
- edition = { workspace = true }
- rust-version = { workspace = true }
- [dependencies]
- serde = { version = "1", features = [ "derive" ] }
- serde_json = "1"
- thiserror = "1"
- phf = { version = "0.10", features = [ "macros" ] }
- brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
- url = { version = "2", features = [ "serde" ] }
- kuchiki = "0.8"
- html5ever = "0.25"
- proc-macro2 = { version = "1", optional = true }
- quote = { version = "1", optional = true }
- schemars = { version = "0.8", features = [ "url" ], optional = true }
- serde_with = "3"
- aes-gcm = { version = "0.10", optional = true }
- getrandom = { version = "0.2", optional = true, features = [ "std" ] }
- serialize-to-javascript = { version = "=0.1.1", optional = true }
- ctor = "0.1"
- json5 = { version = "0.4", optional = true }
- toml = { version = "0.5", optional = true }
- json-patch = "1.0"
- glob = { version = "0.3", optional = true }
- walkdir = { version = "2", optional = true }
- memchr = "2"
- semver = "1"
- infer = "0.12"
- dunce = "1"
- [target."cfg(target_os = \"linux\")".dependencies]
- heck = "0.4"
- [target."cfg(windows)".dependencies.windows]
- version = "0.44.0"
- features = [
- "implement",
- "Win32_Foundation",
- "Win32_System_Com",
- "Win32_System_LibraryLoader",
- "Win32_System_SystemInformation"
- ]
- [features]
- build = [ "proc-macro2", "quote" ]
- compression = [ "brotli" ]
- schema = [ "schemars" ]
- isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
- process-relaunch-dangerous-allow-symlink-macos = [ ]
- config-json5 = [ "json5" ]
- config-toml = [ "toml" ]
- resources = [ "glob", "walkdir" ]
|