mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 15:42:00 +03:00
0f86bc4071
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
23 lines
588 B
TOML
23 lines
588 B
TOML
[package]
|
|
name = "tauri-macros"
|
|
version = "1.0.0-beta-rc.1"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
|
license = "Apache-2.0 OR 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]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "1", features = [ "full" ] }
|
|
tauri-codegen = { version = "1.0.0-beta-rc.1", path = "../tauri-codegen" }
|
|
|
|
[features]
|
|
custom-protocol = [ ]
|