hexkit 0.1.0

Lightweight boundary traits for hexagonal architecture in Rust
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 = "hexkit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight boundary traits for hexagonal architecture in Rust"
readme = "README.md"
keywords = [
    "hexagonal",
    "ports-and-adapters",
    "architecture",
    "ddd",
]
categories = [
    "rust-patterns",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/RAV64/hexkit"

[features]
async = []
default = []

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

[[example]]
name = "async_basic_email_flow"
path = "examples/async_basic_email_flow.rs"
required-features = ["async"]

[[example]]
name = "async_retry_timeout_policy"
path = "examples/async_retry_timeout_policy.rs"
required-features = ["async"]

[[example]]
name = "canonical_app_skeleton"
path = "examples/canonical_app_skeleton/main.rs"

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

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

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

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

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

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

[[test]]
name = "multi_adapters"
path = "tests/multi_adapters.rs"

[[test]]
name = "non_clone"
path = "tests/non_clone.rs"

[[test]]
name = "wiring_mode"
path = "tests/wiring_mode.rs"

[dependencies]