Files
ToDo/src-tauri/Cargo.toml
T
MrDanil 4f4047b097
Publish Release / publish-tauri (--bundles deb, src-tauri/target/release/bundle/deb/**.pkg.tar.zst, arch-latest) (push) Has been cancelled
Publish Release / publish-tauri (src-tauri/target/release/bundle/appimage/**.AppImage, src-tauri/target/release/bundle/deb/**.deb, ubuntu-latest) (push) Has been cancelled
Publish Release / publish-tauri (src-tauri/target/release/bundle/msi/**.msi, src-tauri/target/release/bundle/nsis/**.exe, window-latest) (push) Has been cancelled
v2.0.0-beta - Убрана тяжелая зависимость iconify, изменён дизайн.
В процессе: синхронизация между устройствами
2024-10-08 08:07:29 +07:00

42 lines
1.1 KiB
TOML

[package]
name = "to-do-app"
version = "1.8.0"
description = "A ToDo App"
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2.0.1", features = [] }
[dependencies]
tauri = { version = "2.0.1", features = [] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
magic-crypt = "3.1.13"
rust-fuzzy-search = "0.1.1"
rand = "0.8.5"
hex = "0.4"
aes = "0.7.5"
block-modes = "0.8.1"
block-padding = "0.3.3"
chrono = "0.4.38"
tauri-plugin-shell = "2.0.1"
[features]
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
[lib]
name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[profile.release]
codegen-units = 1 # Allows LLVM to perform better optimization.
lto = true # Enables link-time-optimizations.
opt-level = "s" # Prioritizes small binary size. Use `3` if you prefer speed.
panic = "abort" # Higher performance by disabling panic handlers.
strip = true # Ensures debug symbols are removed.