mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 16:41:34 +03:00
c88838aa76
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
21 lines
600 B
TOML
21 lines
600 B
TOML
[package]
|
|
name = "tauri-codegen"
|
|
version = "0.1.0"
|
|
authors = [ "Tauri Community" ]
|
|
categories = [ "gui", "web-programming" ]
|
|
license = "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]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri-api = { path = "../../tauri-api", features = ["build"] }
|
|
thiserror = "1"
|
|
walkdir = "2"
|
|
zstd = "0.6"
|