aqueue 1.4.2

fast speed thread safe async execute queue.
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"
name = "aqueue"
version = "1.4.2"
authors = ["luyi <luyikk@126.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "fast speed thread safe async execute queue."
documentation = "https://docs.rs/aqueue"
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/luyikk/aqueue"

[features]
async_std_time = ["async-std/unstable"]
tokio_time = ["tokio/time"]

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

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

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

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

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

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

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

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

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

[dependencies.async-lock]
version = "3.3"

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

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

[dev-dependencies.anyhow]
version = "1.0"

[dev-dependencies.async-trait]
version = "0.1"

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

[dev-dependencies.dotenv]
version = "0.15"

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

[dev-dependencies.lazy_static]
version = "1.4"

[dev-dependencies.sqlx]
version = "0.7"
features = [
    "sqlite",
    "runtime-tokio-native-tls",
]

[dev-dependencies.tokio]
version = "1.*"
features = ["full"]