2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-build"
|
2024-01-17 00:11:50 +03:00
|
|
|
version = "2.0.0-alpha.14"
|
2021-03-13 04:10:19 +03:00
|
|
|
description = "build time code to pair with https://crates.io/crates/tauri"
|
2022-08-28 21:13:21 +03:00
|
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
2021-05-11 02:28:15 +03:00
|
|
|
readme = "README.md"
|
2023-05-26 16:04:01 +03:00
|
|
|
authors = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
categories = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
2021-04-14 16:50:15 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2023-10-28 14:04:35 +03: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",
|
|
|
|
"x86_64-apple-ios"
|
|
|
|
]
|
|
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
2021-04-14 16:50:15 +03:00
|
|
|
|
2021-03-13 04:10:19 +03:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2021-09-23 18:57:44 +03:00
|
|
|
quote = { version = "1", optional = true }
|
2024-01-17 00:11:50 +03:00
|
|
|
tauri-codegen = { version = "2.0.0-alpha.13", path = "../tauri-codegen", optional = true }
|
|
|
|
tauri-utils = { version = "2.0.0-alpha.13", path = "../tauri-utils", features = [ "build", "resources" ] }
|
2023-11-07 19:57:07 +03:00
|
|
|
cargo_toml = "0.17"
|
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"
|
2023-10-22 16:47:43 +03:00
|
|
|
json-patch = "1.2"
|
2023-02-06 14:56:00 +03:00
|
|
|
walkdir = "2"
|
2023-01-19 21:42:40 +03:00
|
|
|
tauri-winres = "0.1"
|
2022-05-03 20:04:23 +03:00
|
|
|
semver = "1"
|
2023-09-25 01:11:20 +03:00
|
|
|
dirs-next = "2"
|
2024-01-23 03:24:15 +03:00
|
|
|
glob = "0.3"
|
|
|
|
toml = "0.8"
|
|
|
|
schemars = "0.8"
|
2023-03-20 14:14:51 +03:00
|
|
|
|
2023-02-11 16:30:44 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2023-08-10 13:22:20 +03:00
|
|
|
swift-rs = { version = "1.0.6", features = [ "build" ] }
|
2023-07-18 16:20:55 +03:00
|
|
|
plist = "1"
|
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" ]
|