2021-03-13 01:10:19 +00:00
|
|
|
[package]
|
|
|
|
|
name = "tauri-build"
|
2025-01-10 14:08:21 +00:00
|
|
|
version = "2.0.5"
|
2021-03-13 01:10:19 +00:00
|
|
|
description = "build time code to pair with https://crates.io/crates/tauri"
|
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-04-14 13:50:15 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
2023-10-28 11:04:35 +00:00
|
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
|
|
|
targets = [
|
|
|
|
|
"x86_64-pc-windows-msvc",
|
|
|
|
|
"x86_64-unknown-linux-gnu",
|
|
|
|
|
"x86_64-apple-darwin",
|
|
|
|
|
"x86_64-linux-android",
|
2024-08-27 00:46:05 +00:00
|
|
|
"x86_64-apple-ios",
|
2023-10-28 11:04:35 +00:00
|
|
|
]
|
2024-08-27 00:46:05 +00:00
|
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-04-14 13:50:15 +00:00
|
|
|
|
2021-03-13 01:10:19 +00:00
|
|
|
[dependencies]
|
|
|
|
|
anyhow = "1"
|
2021-09-23 15:57:44 +00:00
|
|
|
quote = { version = "1", optional = true }
|
2025-01-02 18:29:17 +00:00
|
|
|
tauri-codegen = { version = "2.0.4", path = "../tauri-codegen", optional = true }
|
|
|
|
|
tauri-utils = { version = "2.1.1", path = "../tauri-utils", features = [
|
2024-08-27 21:42:30 +00:00
|
|
|
"build",
|
|
|
|
|
"resources",
|
|
|
|
|
] }
|
2025-01-06 19:34:49 +00:00
|
|
|
cargo_toml = "0.21"
|
2023-01-26 13:47:23 +00:00
|
|
|
serde = "1"
|
2022-02-03 13:15:32 +00:00
|
|
|
serde_json = "1"
|
2024-04-18 03:21:21 +00:00
|
|
|
heck = "0.5"
|
2025-01-02 00:01:31 +00:00
|
|
|
json-patch = "3"
|
2023-02-06 11:56:00 +00:00
|
|
|
walkdir = "2"
|
2025-01-10 19:19:48 +00:00
|
|
|
tauri-winres = "0.2"
|
2022-05-03 17:04:23 +00:00
|
|
|
semver = "1"
|
2025-01-23 12:58:00 +00:00
|
|
|
dirs = "6"
|
2024-01-23 00:24:15 +00:00
|
|
|
glob = "0.3"
|
|
|
|
|
toml = "0.8"
|
2025-01-02 00:01:31 +00:00
|
|
|
# Our code requires at least 0.8.18 so don't simplify this to 0.8
|
2024-08-27 00:46:05 +00:00
|
|
|
schemars = { version = "0.8.18", features = ["preserve_order"] }
|
2023-03-20 11:14:51 +00:00
|
|
|
|
2021-03-13 01:10:19 +00:00
|
|
|
[features]
|
2024-08-27 00:46:05 +00:00
|
|
|
default = ["config-json"]
|
|
|
|
|
codegen = ["tauri-codegen", "quote"]
|
|
|
|
|
isolation = ["tauri-codegen/isolation", "tauri-utils/isolation"]
|
|
|
|
|
config-json = []
|
|
|
|
|
config-json5 = ["tauri-utils/config-json5"]
|
|
|
|
|
config-toml = ["tauri-utils/config-toml"]
|