2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-build"
|
2022-11-08 15:24:09 +03:00
|
|
|
version = "1.2.0"
|
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"
|
2022-06-16 05:08:50 +03:00
|
|
|
homepage = "https://tauri.app"
|
2021-03-13 04:10:19 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
|
|
|
|
description = "build time code to pair with https://crates.io/crates/tauri"
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2022-09-28 20:33:35 +03:00
|
|
|
rust-version = "1.59"
|
2022-08-28 21:13:21 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
2021-05-11 02:28:15 +03:00
|
|
|
readme = "README.md"
|
2021-05-11 22:20:35 +03:00
|
|
|
|
2021-04-14 16:50:15 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = [ "--cfg", "doc_cfg" ]
|
|
|
|
|
2021-03-13 04:10:19 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2021-09-23 18:57:44 +03:00
|
|
|
quote = { version = "1", optional = true }
|
2022-11-08 15:24:09 +03:00
|
|
|
tauri-codegen = { version = "1.2.0", path = "../tauri-codegen", optional = true }
|
|
|
|
tauri-utils = { version = "1.2.0", path = "../tauri-utils", features = [ "build", "resources" ] }
|
2022-10-19 15:19:14 +03:00
|
|
|
cargo_toml = "0.13"
|
2022-02-03 16:15:32 +03:00
|
|
|
serde_json = "1"
|
2022-05-25 16:51:33 +03:00
|
|
|
heck = "0.4"
|
2022-07-06 15:29:26 +03:00
|
|
|
json-patch = "0.2"
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winres = "0.1"
|
2022-05-03 20:04:23 +03:00
|
|
|
semver = "1"
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
[features]
|
2021-09-23 18:57:44 +03:00
|
|
|
codegen = [ "tauri-codegen", "quote" ]
|
2022-02-11 00:03:25 +03:00
|
|
|
isolation = [ "tauri-codegen/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" ]
|