mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 16:41:34 +03:00
e0b38d7434
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "tauri-macros"
|
|
version = "2.0.0-alpha.13"
|
|
description = "Macros for the tauri crate."
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
authors = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
categories = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { version = "1", features = [ "span-locations" ] }
|
|
quote = "1"
|
|
syn = { version = "2", features = [ "full" ] }
|
|
heck = "0.4"
|
|
tauri-codegen = { version = "2.0.0-alpha.13", default-features = false, path = "../tauri-codegen" }
|
|
tauri-utils = { version = "2.0.0-alpha.13", path = "../tauri-utils" }
|
|
|
|
[features]
|
|
custom-protocol = [ ]
|
|
compression = [ "tauri-codegen/compression" ]
|
|
isolation = [ "tauri-codegen/isolation" ]
|
|
config-json5 = [ "tauri-codegen/config-json5", "tauri-utils/config-json5" ]
|
|
config-toml = [ "tauri-codegen/config-toml", "tauri-utils/config-toml" ]
|
|
tracing = [ ]
|