2021-03-13 04:10:19 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-build"
|
2021-04-25 23:54:41 +03:00
|
|
|
version = "1.0.0-beta-rc.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"
|
2021-03-13 04:10:19 +03:00
|
|
|
homepage = "https://tauri.studio"
|
|
|
|
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 = "2018"
|
2021-05-11 02:28:15 +03:00
|
|
|
exclude = [ ".license_template", "CHANGELOG.md", "/target" ]
|
|
|
|
readme = "README.md"
|
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"
|
|
|
|
proc-macro2 = "1"
|
|
|
|
quote = "1"
|
2021-04-25 23:54:41 +03:00
|
|
|
tauri-codegen = { version = "1.0.0-beta-rc.1", path = "../tauri-codegen", optional = true }
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
|
winres = "0.1"
|
|
|
|
|
|
|
|
[features]
|
2021-04-14 16:50:15 +03:00
|
|
|
codegen = [ "tauri-codegen" ]
|