41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
authors = ["you"]
|
|
description = "A Tauri App"
|
|
edition = "2021"
|
|
name = "exe-parse"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[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
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
name = "test_tauri_lib"
|
|
|
|
[build-dependencies]
|
|
tauri-build = {version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
bitflags = {version = "2.6.0", features = ["serde"] }
|
|
memmap2 = "0.9.5"
|
|
serde = {version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sysinfo = "0.33.0"
|
|
tauri = {version = "2", features = [] }
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-shell = "2"
|
|
thiserror = "2.0.4"
|
|
pe_parse = { path = "./pe_parse", features = ["memmap2_impl"] }
|
|
|
|
[dependencies.windows]
|
|
version = "0.58.0"
|
|
features = [
|
|
"Data_Xml_Dom",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_ProcessStatus"
|
|
] |