feat!: v1.0.0

Implementing a Plug-in System with Extism.
Serialize the Plugin struct with Cap'n Proto for backward compatibility.
Refactor the project code.
This commit is contained in:
b1n
2024-07-09 09:59:56 +08:00
parent c5cfb7e082
commit ed890a4186
14 changed files with 4919 additions and 1407 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "pumpbin"
version = "0.3.0"
version = "1.0.0"
authors = ["b1n <b1n@b1n.io>"]
edition = "2021"
description = "PumpBin is an Implant Generation Platform."
@@ -19,19 +19,20 @@ path = "src/bin/maker.rs"
[dependencies]
rfd = { version = "0.14.1", default-features = false , features = ["gtk3"]}
dirs = "5.0.1"
flatbuffers = "24.3.25"
open = "5.1.4"
bincode = { version = "2.0.0-rc.3", default-features = false , features = ["alloc", "derive", "std"]}
anyhow = "1.0.86"
rand = "0.8.5"
memchr = "2.7.4"
aes-gcm = "0.10.3"
tokio = { version = "1.38.0", default-features = false , features = ["time"]}
capnp = "0.19"
extism = "1.4.1"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
[dependencies.iced]
version = "0.13.0-dev"
git = "https://github.com/iced-rs/iced"
rev = "6c1027af8d54ad21e282337b53097eb196d62c00"
rev = "978327f9e7f68d3e5bc280faa0617487d8eabc57"
default-features = false
features = ["advanced", "svg", "tokio", "wgpu", "image"]
@@ -44,6 +45,9 @@ winresource = "0.1.17"
[dev-dependencies]
tempfile = "3.10.1"
[build-dependencies]
capnpc = "0.19"
[profile.release]
strip = true
opt-level = 3