2021-02-09 21:22:04 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-macros"
|
2021-07-16 16:23:10 +03:00
|
|
|
version = "1.0.0-beta.4"
|
2021-04-14 21:11:08 +03:00
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
2021-02-09 21:22:04 +03:00
|
|
|
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
2021-04-11 01:09:09 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2021-02-09 21:22:04 +03:00
|
|
|
homepage = "https://tauri.studio"
|
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Macros for the tauri crate."
|
|
|
|
edition = "2018"
|
2021-05-11 02:28:15 +03:00
|
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
|
|
readme = "README.md"
|
2021-02-09 21:22:04 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2021-03-13 04:10:19 +03:00
|
|
|
syn = { version = "1", features = [ "full" ] }
|
2021-07-16 16:23:10 +03:00
|
|
|
tauri-codegen = { version = "1.0.0-beta.3", path = "../tauri-codegen" }
|
2021-04-06 07:15:53 +03:00
|
|
|
|
|
|
|
[features]
|
2021-04-14 16:50:15 +03:00
|
|
|
custom-protocol = [ ]
|