[package]
edition = "2021"
name = "floss-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "在 Rust 中以子进程方式调用 FLARE FLOSS CLI,并可选解析 -j JSON 输出"
readme = "README.md"
keywords = [
"floss",
"malware",
"reverse-engineering",
"cli",
"wrapper",
]
categories = ["command-line-utilities"]
license = "Apache-2.0"
repository = "https://github.com/ze-mu-zhou/floss-cli"
[lib]
name = "floss_cli"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
"time",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_JobObjects",
"Win32_System_Threading",
]
[lints.clippy]
allow_attributes = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"