Files
pumpbin/Cargo.toml

57 lines
1.3 KiB
TOML
Raw Normal View History

2024-06-20 17:54:19 +08:00
[package]
name = "pumpbin"
version = "1.1.1"
2024-06-20 17:54:19 +08:00
authors = ["b1n <b1n@b1n.io>"]
2024-06-26 02:31:44 +08:00
edition = "2021"
description = "PumpBin is an Implant Generation Platform."
documentation = "https://pumpbin.b1n.io"
readme = "README.md"
2024-06-20 17:54:19 +08:00
homepage = "https://b1n.io"
repository = "https://github.com/pumpbin/pumpbin"
2024-06-26 02:31:44 +08:00
license = "MIT"
build = "build.rs"
default-run = "pumpbin"
2024-06-20 17:54:19 +08:00
2024-06-21 20:04:21 +08:00
[[bin]]
name = "maker"
path = "src/bin/maker.rs"
2024-06-20 17:54:19 +08:00
[dependencies]
2024-06-28 21:17:57 +08:00
rfd = { version = "0.14.1", default-features = false , features = ["gtk3"]}
2024-06-20 17:54:19 +08:00
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"
2024-07-09 15:47:39 +08:00
flate2 = "1.0.30"
2024-06-20 17:54:19 +08:00
[dependencies.iced]
version = "0.13.0-dev"
git = "https://github.com/iced-rs/iced"
2024-07-16 12:05:49 +08:00
rev = "143f4c86caeb43cfff6573fe192c8eb877bb044c"
2024-06-20 17:54:19 +08:00
default-features = false
2024-07-16 12:05:49 +08:00
features = ["wgpu", "tiny-skia", "advanced", "svg", "tokio", "image"]
2024-06-24 23:13:08 +08:00
2024-06-26 15:29:44 +08:00
[package.metadata.winresource]
LegalCopyright = "Copyright (c) 2024 b1n <b1n@b1n.io>"
2024-06-26 02:31:44 +08:00
[target."cfg(windows)".build-dependencies]
winresource = "0.1.17"
[dev-dependencies]
tempfile = "3.10.1"
[build-dependencies]
capnpc = "0.19"
2024-06-24 23:13:08 +08:00
[profile.release]
strip = true
opt-level = 3
2024-06-24 23:13:08 +08:00
lto = true
2024-06-26 14:16:32 +08:00
codegen-units = 1