/ src-tauri / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "fondant"
 3  version = "0.1.0"
 4  description = "A Tauri App"
 5  authors = ["you"]
 6  edition = "2021"
 7  
 8  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 9  
10  [lib]
11  # The `_lib` suffix may seem redundant but it is necessary
12  # to make the lib name unique and wouldn't conflict with the bin name.
13  # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
14  name = "fondant_lib"
15  crate-type = ["staticlib", "cdylib", "rlib"]
16  
17  [build-dependencies]
18  tauri-build = { version = "2", features = [] }
19  
20  [dependencies]
21  tauri = { version = "2", features = [] }
22  tauri-plugin-shell = "2"
23  serde = { version = "1", features = ["derive"] }
24  serde_json = "1"
25  gtk = "0.18.1"
26  gtk-layer-shell = { version = "0.8.1", features = ["v0_6"] }
27