new project init

This commit is contained in:
2025-01-11 15:43:52 +01:00
parent 56cc15fef5
commit b08e389b7b
46 changed files with 1876 additions and 1536 deletions

View File

@@ -1,26 +1,28 @@
[package]
name = "app"
name = "inventory"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "inventory_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.0.2", features = [] }
tauri-build = { version = "2", features = [] }
[dependencies]
serde_json = "1.0"
tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
serde_json = "1"
rusqlite = "0.26.0"
anyhow = "1.0"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.1.0", features = [] }
tauri-plugin-log = "2.0.0-rc"
mysql = "25.0.1"
chrono = { version = "0.4", features = ["serde"] }