mythic-c2 0.2.1

Mythic C2 agent library — message encoding, AES-256-CBC-HMAC crypto, and transport abstraction for the full agent lifecycle
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "mythic-c2"
version = "0.2.1"
authors = ["Zumpyx <zumpyx@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mythic C2 agent library — message encoding, AES-256-CBC-HMAC crypto, and transport abstraction for the full agent lifecycle"
documentation = "https://docs.rs/mythic-c2"
readme = "README.md"
keywords = [
    "mythic",
    "c2",
    "red-team",
    "agent",
    "protocol",
]
categories = [
    "network-programming",
    "cryptography",
    "development-tools",
]
license = "GPL-3.0-only"
repository = "https://github.com/zumpyx/mythic-c2"

[lib]
name = "mythic"
path = "src/lib.rs"

[[example]]
name = "mythic_facade"
path = "examples/mythic_facade.rs"

[dependencies.aes]
version = "0.8"
default-features = false

[dependencies.base64]
version = "0.22"
features = ["alloc"]
default-features = false

[dependencies.cbc]
version = "0.1"
features = ["alloc"]
default-features = false

[dependencies.cipher]
version = "0.4"
features = [
    "alloc",
    "block-padding",
]
default-features = false

[dependencies.hmac]
version = "0.12"
default-features = false

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.serde_json]
version = "1"
features = ["alloc"]
default-features = false

[dependencies.sha2]
version = "0.10"
default-features = false

[dependencies.uuid]
version = "1"
features = ["serde"]
default-features = false

[profile.dev]
panic = "abort"

[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"
incremental = false
strip = "symbols"