added .gitignore

This commit is contained in:
aOK 2023-10-06 17:15:40 +03:00
parent 1b1cd2e064
commit 05745ecde6
7 changed files with 139 additions and 25 deletions

View file

@ -14,12 +14,14 @@ crate-type = ["staticlib", "cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2.0.0-alpha", features = [] }
tauri-build = { version = "2.0.0-alpha.8", features = [] }
[dependencies]
tauri = { version = "2.0.0-alpha", features = [] }
tauri-plugin-window = "2.0.0-alpha"
tauri-plugin-shell = "2.0.0-alpha"
tauri = { version = "2.0.0-alpha.14", features = [] }
# tauri-plugin-window = "2.0.0-alpha.2"
tauri-plugin-window = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
# tauri-plugin-shell = "2.0.0-alpha.2"
tauri-plugin-shell = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View file

@ -3,5 +3,5 @@
fn main() {
#[cfg(desktop)]
nigiginc_lib::run();
book_lib::run();
}