2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-build"
|
2021-08-16 23:59:06 +03:00
|
|
|
version = "1.0.0-beta.4"
|
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-build"
|
|
|
|
description = "build time code to pair with https://crates.io/crates/tauri"
|
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-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 }
|
2021-08-16 23:59:06 +03:00
|
|
|
tauri-codegen = { version = "1.0.0-beta.4", path = "../tauri-codegen", optional = true }
|
2022-02-08 19:13:21 +03:00
|
|
|
tauri-utils = { version = "1.0.0-beta.0", path = "../tauri-utils", features = [ "build", "resources" ] }
|
2022-02-09 17:49:14 +03:00
|
|
|
cargo_toml = "0.11"
|
2022-02-03 16:15:32 +03:00
|
|
|
serde_json = "1"
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winres = "0.1"
|
|
|
|
|
|
|
|
[features]
|
2021-09-23 18:57:44 +03:00
|
|
|
codegen = [ "tauri-codegen", "quote" ]
|
2022-01-17 16:46:14 +03:00
|
|
|
isolation = ["tauri-codegen/isolation", "tauri-utils/isolation"]
|
2022-02-03 16:15:32 +03:00
|
|
|
config-json5 = [ "tauri-utils/config-json5" ]
|