mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 16:41:34 +03:00
618c4538ea
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "tauri-codegen"
|
|
version = "2.0.0-alpha.10"
|
|
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
|
|
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]
|
|
sha2 = "0.10"
|
|
base64 = "0.21"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "1"
|
|
tauri-utils = { version = "2.0.0-alpha.10", path = "../tauri-utils", features = [ "build" ] }
|
|
thiserror = "1"
|
|
walkdir = "2"
|
|
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
|
|
regex = { version = "1", optional = true }
|
|
uuid = { version = "1", features = [ "v4" ] }
|
|
semver = "1"
|
|
ico = "0.3"
|
|
png = "0.17"
|
|
json-patch = "1.2"
|
|
url = "2"
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
plist = "1"
|
|
time = { version = "0.3", features = [ "parsing", "formatting" ] }
|
|
|
|
[features]
|
|
default = [ "compression" ]
|
|
compression = [ "brotli", "tauri-utils/compression" ]
|
|
isolation = [ "tauri-utils/isolation" ]
|
|
config-json5 = [ "tauri-utils/config-json5" ]
|
|
config-toml = [ "tauri-utils/config-toml" ]
|