2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-codegen"
|
2022-05-08 02:01:58 +03:00
|
|
|
version = "1.0.0-rc.6"
|
2021-04-14 21:11:08 +03:00
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
2021-03-13 04:10:19 +03:00
|
|
|
categories = [ "gui", "web-programming" ]
|
2021-04-11 01:09:09 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2021-03-13 04:10:19 +03:00
|
|
|
homepage = "https://tauri.studio"
|
|
|
|
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
|
|
|
|
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2022-01-17 16:46:14 +03:00
|
|
|
rust-version = "1.57"
|
2021-05-11 02:28:15 +03:00
|
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
|
|
readme = "README.md"
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-09 17:40:01 +03:00
|
|
|
sha2 = "0.10"
|
2022-01-09 17:11:59 +03:00
|
|
|
base64 = "0.13"
|
2021-03-13 04:10:19 +03:00
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2021-04-14 16:50:15 +03:00
|
|
|
serde = { version = "1", features = [ "derive" ] }
|
2021-03-13 04:10:19 +03:00
|
|
|
serde_json = "1"
|
2022-05-08 02:01:58 +03:00
|
|
|
tauri-utils = { version = "1.0.0-rc.6", path = "../tauri-utils", features = [ "build" ] }
|
2021-03-13 04:10:19 +03:00
|
|
|
thiserror = "1"
|
|
|
|
walkdir = "2"
|
2022-03-28 23:43:04 +03:00
|
|
|
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }
|
2022-03-22 04:34:07 +03:00
|
|
|
regex = { version = "1.5.5", optional = true }
|
2022-04-20 20:38:40 +03:00
|
|
|
uuid = { version = "1", features = [ "v4" ] }
|
2021-12-30 17:28:41 +03:00
|
|
|
|
2022-03-05 20:19:24 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
ico = "0.1"
|
|
|
|
|
2022-03-07 16:53:02 +03:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2022-03-10 05:28:39 +03:00
|
|
|
png = "0.17"
|
2022-03-05 20:19:24 +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" ]
|
|
|
|
shell-scope = [ "regex" ]
|
2022-02-03 16:15:32 +03:00
|
|
|
config-json5 = [ "tauri-utils/config-json5" ]
|