mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 20:48:52 +03:00
32 lines
1004 B
TOML
32 lines
1004 B
TOML
[package]
|
|
name = "tauri-codegen"
|
|
version = "1.0.0-beta.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.56"
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
sha2 = "0.9"
|
|
base64 = "0.13"
|
|
blake3 = { version = "1.2", features = [ "rayon" ] }
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "1"
|
|
tauri-utils = { version = "1.0.0-beta.3", path = "../tauri-utils", features = [ "build" ] }
|
|
thiserror = "1"
|
|
walkdir = "2"
|
|
zstd = { version = "0.9", optional = true }
|
|
regex = "1"
|
|
|
|
[features]
|
|
default = [ "compression" ]
|
|
compression = [ "zstd", "tauri-utils/compression" ]
|