Files
calorie-tracker/src-tauri/Cargo.toml
dependabot[bot] 96830b792d Bump tauri-build from 1.2.1 to 1.3.0 in /src-tauri (#57)
Bumps [tauri-build](https://github.com/tauri-apps/tauri) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-build-v1.2.1...tauri-build-v1.3)

---
updated-dependencies:
- dependency-name: tauri-build
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-12 16:37:21 -02:00

37 lines
1.1 KiB
TOML

[package]
name = "svelte-tauri"
version = "0.1.0"
description = "Svelte-Tauri template starter"
authors = ["Fractal-Tess"]
license = "MIT"
repository = "https://github.com/Fractal-Tess/Svelte-Tauri"
default-run = "svelte-tauri"
edition = "2021"
rust-version = "1.68"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.3.0", features = [] }
[dependencies]
serde_json = "1.0"
sha2 = "0.10.6"
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2.3", features = ["api-all", "devtools"] }
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
[profile.release]
# panic ='abort'
# codegen-units= 1
# lto = true
# opt-level = 's'