crossfire 3.0.2

channels for async and threads
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 = "2021"
rust-version = "1.61"
name = "crossfire"
version = "3.0.2"
authors = ["plan <frostyplanet@gmail.com>"]
build = false
exclude = [
    "/ci/*",
    "/bors.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "channels for async and threads"
homepage = "https://github.com/frostyplanet/crossfire-rs"
documentation = "https://docs.rs/crossfire"
readme = "README.md"
keywords = [
    "async",
    "non-blocking",
    "lock-free",
    "channel",
]
categories = [
    "concurrency",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/frostyplanet/crossfire-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
async_std = ["dep:async-std"]
compat = []
default = []
tokio = ["dep:tokio"]
trace_log = ["dep:log"]

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

[[bench]]
name = "inner"
path = "benches/inner.rs"

[dependencies.async-std]
version = "1"
optional = true

[dependencies.crossbeam-utils]
version = "0.8"

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

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

[dependencies.parking_lot]
version = "0"

[dependencies.smallvec]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "time",
    "rt",
]
optional = true

[dev-dependencies.log]
version = "0"

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