mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
24 lines
580 B
TOML
24 lines
580 B
TOML
|
[package]
|
||
|
name = "tauri-macros"
|
||
|
version = "0.1.0"
|
||
|
authors = [ "Tauri Community" ]
|
||
|
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
||
|
license = "MIT"
|
||
|
homepage = "https://tauri.studio"
|
||
|
repository = "https://github.com/tauri-apps/tauri"
|
||
|
description = "Macros for the tauri crate."
|
||
|
edition = "2018"
|
||
|
|
||
|
[lib]
|
||
|
proc-macro = true
|
||
|
|
||
|
[dependencies]
|
||
|
flate2 = "1"
|
||
|
proc-macro2 = "1"
|
||
|
quote = "1"
|
||
|
serde = {version = "1", features = ["derive"]}
|
||
|
serde_json = "1"
|
||
|
syn = { version = "1", features = ["extra-traits"] }
|
||
|
tauri-utils = { version = "0.5", path = "../tauri-utils" }
|
||
|
walkdir = "2"
|