mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
a6def7066e
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
22 lines
666 B
TOML
22 lines
666 B
TOML
[package]
|
|
name = "tauri-codegen"
|
|
version = "0.1.0"
|
|
authors = [ "Tauri Community" ]
|
|
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 = "2018"
|
|
|
|
[dependencies]
|
|
blake3 = { version = "0.3", features = ["rayon"] }
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri-utils = { path = "../tauri-utils", features = ["build"] }
|
|
thiserror = "1"
|
|
walkdir = "2"
|
|
zstd = "0.7"
|