yaaral 0.5.3

yet another async runtime abstraction 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 = "yaaral"
version = "0.5.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "yet another async runtime abstraction library"
readme = "README.MD"
keywords = ["async"]
license = "MIT"
repository = "https://gitlab.com/cyloncore/yaaral"

[features]
bevy_runtime = [
    "dep:bevy_tasks",
    "dep:async-io",
]
bevy_runtime_018 = [
    "dep:bevy_tasks_018",
    "dep:async-io",
]
compat = ["dep:async-compat"]
default = []
futures_runtime = [
    "dep:futures",
    "dep:async-std",
    "dep:async-io",
]
http = [
    "anyhow",
    "ccutils/futures",
    "dep:bytes",
    "dep:futures",
    "hyper",
    "async-native-tls",
    "http-body-util",
    "reqwest",
    "smol",
    "smol-hyper",
    "dep:http",
]
json = [
    "dep:serde",
    "dep:serde_json",
]
time = ["dep:futures"]
tokio = ["dep:tokio"]
tokio_runtime = ["dep:tokio"]

[lib]
name = "yaaral"
path = "src/lib.rs"
doctest = false

[[test]]
name = "bevy"
path = "tests/bevy.rs"
harness = false
required-features = ["bevy_runtime_018"]

[dependencies.anyhow]
version = "1"
optional = true

[dependencies.async-compat]
version = "0.2"
optional = true

[dependencies.async-io]
version = "2"
optional = true

[dependencies.async-native-tls]
version = "0.5"
optional = true

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

[dependencies.bevy_tasks]
version = "0.17"
features = ["async-io"]
optional = true

[dependencies.bevy_tasks_018]
version = "0.18"
features = ["async-io"]
optional = true
package = "bevy_tasks"

[dependencies.bytes]
version = "1"
optional = true

[dependencies.ccutils]
version = "0.4"

[dependencies.futures]
version = "0.3"
features = ["thread-pool"]
optional = true

[dependencies.http]
version = "1"
optional = true

[dependencies.http-body-util]
version = "0.1"
optional = true

[dependencies.hyper]
version = "1"
features = [
    "client",
    "http1",
    "http2",
]
optional = true

[dependencies.reqwest]
version = "0.13"
features = ["stream"]
optional = true

[dependencies.serde]
version = "1"
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.smol]
version = "2"
optional = true

[dependencies.smol-hyper]
version = "0.1"
optional = true

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

[dev-dependencies.bevy]
version = "0.18"
features = [
    "async_executor",
    "async-io",
    "multi_threaded",
]
default-features = false

[dev-dependencies.ccutils]
version = "0.4"
features = ["sync"]

[dev-dependencies.hyper]
version = "1"
features = ["server"]

[dev-dependencies.libtest-mimic]
version = "0.8"