2020-01-18 03:33:17 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-utils"
|
2022-06-16 05:08:50 +03:00
|
|
|
version = "1.0.0"
|
2021-04-14 21:11:08 +03:00
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
2021-04-11 01:09:09 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2022-06-16 05:08:50 +03:00
|
|
|
homepage = "https://tauri.app"
|
2020-01-18 03:33:17 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Utilities for Tauri"
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2022-01-17 16:46:14 +03:00
|
|
|
rust-version = "1.57"
|
2021-05-11 02:28:15 +03:00
|
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
|
|
readme = "README.md"
|
2020-01-18 03:33:17 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-04-14 16:50:15 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2021-02-09 21:22:04 +03:00
|
|
|
serde_json = "1.0"
|
2021-10-13 14:40:29 +03:00
|
|
|
thiserror = "1.0.30"
|
2021-08-11 17:44:55 +03:00
|
|
|
phf = { version = "0.10", features = [ "macros" ] }
|
2022-03-28 23:43:04 +03:00
|
|
|
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
|
2021-04-14 16:50:15 +03:00
|
|
|
url = { version = "2.2", features = [ "serde" ] }
|
2021-05-05 05:31:05 +03:00
|
|
|
kuchiki = "0.8"
|
|
|
|
html5ever = "0.25"
|
2021-03-13 04:10:19 +03:00
|
|
|
proc-macro2 = { version = "1.0", optional = true }
|
|
|
|
quote = { version = "1.0", optional = true }
|
2022-02-11 00:03:25 +03:00
|
|
|
schemars = { version = "0.8", features = [ "url" ], optional = true }
|
2022-02-09 20:18:46 +03:00
|
|
|
serde_with = "1.12"
|
2022-01-17 16:46:14 +03:00
|
|
|
aes-gcm = { version = "0.9", optional = true }
|
2022-03-28 02:52:43 +03:00
|
|
|
getrandom = { version = "0.2", optional = true, features = [ "std" ] }
|
2022-04-19 23:33:17 +03:00
|
|
|
serialize-to-javascript = { version = "=0.1.1", optional = true }
|
2022-02-02 05:30:52 +03:00
|
|
|
ctor = "0.1"
|
2022-02-03 16:15:32 +03:00
|
|
|
json5 = { version = "0.4", optional = true }
|
|
|
|
json-patch = "0.2"
|
2022-02-08 19:13:21 +03:00
|
|
|
glob = { version = "0.3.0", optional = true }
|
|
|
|
walkdir = { version = "2", optional = true }
|
2022-04-22 18:59:03 +03:00
|
|
|
memchr = "2.4"
|
2022-05-25 19:15:21 +03:00
|
|
|
semver = "1"
|
2022-01-17 16:46:14 +03:00
|
|
|
|
2021-08-23 02:41:26 +03:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2021-12-15 22:02:48 +03:00
|
|
|
heck = "0.4"
|
2021-08-23 02:41:26 +03:00
|
|
|
|
2021-03-13 04:10:19 +03:00
|
|
|
[features]
|
|
|
|
build = [ "proc-macro2", "quote" ]
|
2022-03-28 02:52:43 +03:00
|
|
|
compression = [ "brotli" ]
|
2022-02-11 00:03:25 +03:00
|
|
|
schema = [ "schemars" ]
|
2022-04-19 23:33:17 +03:00
|
|
|
isolation = [ "aes-gcm", "getrandom", "serialize-to-javascript" ]
|
2022-02-11 00:03:25 +03:00
|
|
|
process-relaunch-dangerous-allow-symlink-macos = [ ]
|
2022-02-03 16:15:32 +03:00
|
|
|
config-json5 = [ "json5" ]
|
2022-02-08 19:13:21 +03:00
|
|
|
resources = [ "glob", "walkdir" ]
|