2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-build"
|
2023-02-02 23:55:23 +03:00
|
|
|
version = "2.0.0-alpha.1"
|
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"
|
2023-01-29 21:08:27 +03:00
|
|
|
rust-version = "1.64"
|
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 }
|
2023-02-02 23:55:23 +03:00
|
|
|
tauri-codegen = { version = "2.0.0-alpha.1", path = "../tauri-codegen", optional = true }
|
|
|
|
tauri-utils = { version = "2.0.0-alpha.1", path = "../tauri-utils", features = [ "build", "resources" ] }
|
2022-12-31 18:55:19 +03:00
|
|
|
cargo_toml = "0.14"
|
2023-01-26 16:47:23 +03:00
|
|
|
serde = "1"
|
2022-02-03 16:15:32 +03:00
|
|
|
serde_json = "1"
|
2022-05-25 16:51:33 +03:00
|
|
|
heck = "0.4"
|
2022-12-14 15:01:20 +03:00
|
|
|
json-patch = "0.3"
|
2023-02-06 14:56:00 +03:00
|
|
|
walkdir = "2"
|
2023-02-13 15:50:29 +03:00
|
|
|
filetime = "0.2"
|
2021-03-13 04:10:19 +03:00
|
|
|
|
2023-01-19 21:42:40 +03:00
|
|
|
# dependencies for Windows targets
|
|
|
|
tauri-winres = "0.1"
|
2022-05-03 20:04:23 +03:00
|
|
|
semver = "1"
|
2023-02-11 16:30:44 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2023-03-17 19:07:39 +03:00
|
|
|
swift-rs = { version = "1.0.2", features = ["build"] }
|
2023-02-11 16:30:44 +03:00
|
|
|
|
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" ]
|