Files
pumpbin/Cargo.toml
b1n ed890a4186 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.
2024-07-09 10:48:45 +08:00

56 lines
1.3 KiB
TOML

[package]
name = "pumpbin"
version = "1.0.0"
authors = ["b1n <b1n@b1n.io>"]
edition = "2021"
description = "PumpBin is an Implant Generation Platform."
documentation = "https://pumpbin.b1n.io"
readme = "README.md"
homepage = "https://b1n.io"
repository = "https://github.com/pumpbin/pumpbin"
license = "MIT"
build = "build.rs"
default-run = "pumpbin"
[[bin]]
name = "maker"
path = "src/bin/maker.rs"
[dependencies]
rfd = { version = "0.14.1", default-features = false , features = ["gtk3"]}
dirs = "5.0.1"
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"
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 = "978327f9e7f68d3e5bc280faa0617487d8eabc57"
default-features = false
features = ["advanced", "svg", "tokio", "wgpu", "image"]
[package.metadata.winresource]
LegalCopyright = "Copyright (c) 2024 b1n <b1n@b1n.io>"
[target."cfg(windows)".build-dependencies]
winresource = "0.1.17"
[dev-dependencies]
tempfile = "3.10.1"
[build-dependencies]
capnpc = "0.19"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1