crosstalk 1.0.0

An extremely lightweight, topic-based, cross-thread, in-memory communication library
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 = "crosstalk"
version = "1.0.0"
authors = ["Arpad Voros <arpadav@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An extremely lightweight, topic-based, cross-thread, in-memory communication library"
documentation = "https://docs.rs/crosstalk"
readme = "README.md"
keywords = [
    "thread",
    "channel",
    "mpmc",
    "async",
    "distributed",
]
categories = [
    "concurrency",
    "algorithms",
    "data-structures",
    "memory-management",
    "aerospace",
]
license = "MIT"
repository = "https://github.com/arpadav/crosstalk"

[features]
default = []
log = ["dep:log"]
tracing = ["dep:tracing"]

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

[[bench]]
name = "test"
path = "benches/test.rs"
harness = false

[dependencies.crosstalk-macros]
version = "1.0.0"

[dependencies.log]
version = "0.4"
optional = true

[dependencies.tokio]
version = "1.44"
features = [
    "sync",
    "time",
    "rt-multi-thread",
]

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.tokio]
version = "1.44"
features = [
    "sync",
    "time",
    "macros",
    "rt-multi-thread",
]