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