2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-build"
|
2023-06-17 21:05:12 +03:00
|
|
|
version = "2.0.0-alpha.6"
|
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
|
|
|
|
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-06-17 21:05:12 +03:00
|
|
|
tauri-codegen = { version = "2.0.0-alpha.6", path = "../tauri-codegen", optional = true }
|
|
|
|
tauri-utils = { version = "2.0.0-alpha.6", path = "../tauri-utils", features = [ "build", "resources" ] }
|
2023-04-07 03:13:25 +03:00
|
|
|
cargo_toml = "0.15"
|
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-04-12 17:20:08 +03:00
|
|
|
json-patch = "1.0"
|
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-03-20 14:14:51 +03:00
|
|
|
|
2023-02-11 16:30:44 +03:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2023-04-07 18:48:14 +03:00
|
|
|
swift-rs = { version = "1.0.4", 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" ]
|