mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-15 13:41:39 +03:00
13c2fc1ffe
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
49 lines
1.6 KiB
TOML
49 lines
1.6 KiB
TOML
[package]
|
|
name = "tauri-utils"
|
|
version = "1.0.0"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.app"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Utilities for Tauri"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0.30"
|
|
phf = { version = "0.10", features = [ "macros" ] }
|
|
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
|
|
url = { version = "2.2", features = [ "serde" ] }
|
|
kuchiki = "0.8"
|
|
html5ever = "0.25"
|
|
proc-macro2 = { version = "1.0", optional = true }
|
|
quote = { version = "1.0", optional = true }
|
|
schemars = { version = "0.8", features = [ "url" ], optional = true }
|
|
serde_with = "1.12"
|
|
aes-gcm = { version = "0.9", 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 }
|
|
json-patch = "0.2"
|
|
glob = { version = "0.3.0", optional = true }
|
|
walkdir = { version = "2", optional = true }
|
|
memchr = "2.4"
|
|
semver = "1"
|
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
|
heck = "0.4"
|
|
|
|
[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" ]
|
|
resources = [ "glob", "walkdir" ]
|