mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-16 15:13:38 +03:00
7a814fcf3f
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
41 lines
1.3 KiB
TOML
41 lines
1.3 KiB
TOML
[package]
|
|
name = "tauri-codegen"
|
|
version = "1.0.0-rc.4"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
categories = [ "gui", "web-programming" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.studio"
|
|
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
|
|
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
sha2 = "0.10"
|
|
base64 = "0.13"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "1"
|
|
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils", features = [ "build" ] }
|
|
thiserror = "1"
|
|
walkdir = "2"
|
|
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
|
|
regex = { version = "1.5.5", optional = true }
|
|
uuid = { version = "0.8", features = [ "v4" ] }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
ico = "0.1"
|
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
|
png = "0.17"
|
|
|
|
[features]
|
|
default = [ "compression" ]
|
|
compression = [ "brotli", "tauri-utils/compression" ]
|
|
isolation = [ "tauri-utils/isolation" ]
|
|
shell-scope = [ "regex" ]
|
|
config-json5 = [ "tauri-utils/config-json5" ]
|