mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 12:27:16 +03:00
be12ad3a6f
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "tauri-build"
|
|
version = "2.0.0-alpha.2"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
categories = [ "gui", "web-programming" ]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.app"
|
|
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
|
|
description = "build time code to pair with https://crates.io/crates/tauri"
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
exclude = [ "CHANGELOG.md", "/target" ]
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [ "--cfg", "doc_cfg" ]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
quote = { version = "1", optional = true }
|
|
tauri-codegen = { version = "2.0.0-alpha.2", path = "../tauri-codegen", optional = true }
|
|
tauri-utils = { version = "2.0.0-alpha.2", path = "../tauri-utils", features = [ "build", "resources" ] }
|
|
cargo_toml = "0.14"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
heck = "0.4"
|
|
json-patch = "0.3"
|
|
walkdir = "2"
|
|
filetime = "0.2"
|
|
tauri-winres = "0.1"
|
|
semver = "1"
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
swift-rs = { version = "1.0.3", features = [ "build" ] }
|
|
|
|
[features]
|
|
codegen = [ "tauri-codegen", "quote" ]
|
|
isolation = [ "tauri-codegen/isolation", "tauri-utils/isolation" ]
|
|
config-json5 = [ "tauri-utils/config-json5" ]
|
|
config-toml = [ "tauri-utils/config-toml" ]
|