dsad
This commit is contained in:
48
src-tauri/Cargo.toml
Normal file
48
src-tauri/Cargo.toml
Normal file
@@ -0,0 +1,48 @@
|
||||
[package]
|
||||
name = "pocketpentester"
|
||||
version = "0.1.0"
|
||||
description = "Mobile pentester toolkit"
|
||||
authors = ["imtaqin"]
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
name = "pocketpentester_lib"
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
tauri-build = { version = "2", features = [] }
|
||||
|
||||
[dependencies]
|
||||
tauri = { version = "2", features = [] }
|
||||
tauri-plugin-opener = "2"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
tokio = { version = "1", features = ["rt-multi-thread", "net", "time", "macros", "sync", "io-util", "fs"] }
|
||||
walkdir = "2"
|
||||
local-ip-address = "0.6"
|
||||
rustls = { version = "0.23", default-features = false, features = ["std", "ring"] }
|
||||
tokio-rustls = { version = "0.26", default-features = false, features = ["ring"] }
|
||||
x509-parser = "0.17"
|
||||
rustls-pki-types = "1"
|
||||
md5 = "0.7"
|
||||
futures = "0.3"
|
||||
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "gzip", "json", "cookies"] }
|
||||
hickory-resolver = "0.24"
|
||||
anyhow = "1"
|
||||
regex = "1"
|
||||
once_cell = "1"
|
||||
url = "2"
|
||||
base64 = "0.22"
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
rand = "0.8"
|
||||
serde_yaml = "0.9"
|
||||
urlencoding = "2"
|
||||
|
||||
[profile.release]
|
||||
opt-level = "z"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
strip = true
|
||||
panic = "abort"
|
||||
Reference in New Issue
Block a user