mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-03 02:09:50 +03:00
45a5cd569b
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "tauri-macros"
|
|
version = "1.2.0"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.app"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Macros for the tauri crate."
|
|
edition = "2021"
|
|
rust-version = "1.59"
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "1", features = [ "full" ] }
|
|
heck = "0.4"
|
|
tauri-codegen = { version = "1.2.0", default-features = false, path = "../tauri-codegen" }
|
|
tauri-utils = { version = "1.2.0", path = "../tauri-utils" }
|
|
|
|
[features]
|
|
custom-protocol = [ ]
|
|
compression = [ "tauri-codegen/compression" ]
|
|
isolation = [ "tauri-codegen/isolation" ]
|
|
shell-scope = [ "tauri-codegen/shell-scope" ]
|
|
config-json5 = [ "tauri-codegen/config-json5", "tauri-utils/config-json5" ]
|
|
config-toml = [ "tauri-codegen/config-toml", "tauri-utils/config-toml" ]
|