2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-codegen"
|
2024-02-21 18:00:32 +03:00
|
|
|
version = "2.0.0-beta.3"
|
2021-03-13 04:10:19 +03:00
|
|
|
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
|
2022-08-28 21:13:21 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
2021-05-11 02:28:15 +03:00
|
|
|
readme = "README.md"
|
2023-05-26 16:04:01 +03:00
|
|
|
authors = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
categories = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
2021-03-13 04:10:19 +03:00
|
|
|
[dependencies]
|
2022-02-09 17:40:01 +03:00
|
|
|
sha2 = "0.10"
|
2023-01-26 17:23:08 +03:00
|
|
|
base64 = "0.21"
|
2021-03-13 04:10:19 +03:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2024-02-19 17:13:36 +03:00
|
|
|
syn = "2"
|
|
|
|
serde = { version = "1", features = [ "derive" ] }
|
2021-03-13 04:10:19 +03:00
|
|
|
serde_json = "1"
|
2024-02-21 18:00:32 +03:00
|
|
|
tauri-utils = { version = "2.0.0-beta.3", path = "../tauri-utils", features = [ "build" ] }
|
2021-03-13 04:10:19 +03:00
|
|
|
thiserror = "1"
|
|
|
|
walkdir = "2"
|
2024-02-19 21:49:28 +03:00
|
|
|
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
|
2023-10-20 02:44:04 +03:00
|
|
|
regex = { version = "1", optional = true }
|
2024-02-19 21:49:28 +03:00
|
|
|
uuid = { version = "1", features = [ "v4" ] }
|
2022-05-25 19:15:21 +03:00
|
|
|
semver = "1"
|
2022-12-31 18:47:25 +03:00
|
|
|
ico = "0.3"
|
2022-03-10 05:28:39 +03:00
|
|
|
png = "0.17"
|
2023-10-20 03:04:49 +03:00
|
|
|
json-patch = "1.2"
|
2022-08-20 22:53:07 +03:00
|
|
|
url = "2"
|
2022-03-05 20:19:24 +03:00
|
|
|
|
2022-06-17 19:54:31 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
|
|
plist = "1"
|
2024-02-19 21:49:28 +03:00
|
|
|
time = { version = "0.3", features = [ "parsing", "formatting" ] }
|
2022-06-17 19:54:31 +03:00
|
|
|
|
2021-12-30 17:28:41 +03:00
|
|
|
[features]
|
|
|
|
default = [ "compression" ]
|
2022-03-28 02:52:43 +03:00
|
|
|
compression = [ "brotli", "tauri-utils/compression" ]
|
2022-02-11 00:03:25 +03:00
|
|
|
isolation = [ "tauri-utils/isolation" ]
|
2022-02-03 16:15:32 +03:00
|
|
|
config-json5 = [ "tauri-utils/config-json5" ]
|
2022-08-02 20:12:26 +03:00
|
|
|
config-toml = [ "tauri-utils/config-toml" ]
|