Files
Notes/notes-service/vendor/futures-intrusive/Cargo.toml
T
2026-08-01 16:11:49 +03:00

99 lines
1.9 KiB
TOML

# 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 = "2018"
name = "futures-intrusive"
version = "0.5.0"
authors = ["Matthias Einwag <matthias.einwag@live.com>"]
description = """
Futures based on intrusive data structures - for std and no-std environments.
"""
homepage = "https://github.com/Matthias247/futures-intrusive"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Matthias247/futures-intrusive"
[lib]
name = "futures_intrusive"
[[example]]
name = "cancellation"
required-features = ["std"]
[[example]]
name = "philosophers"
required-features = ["std"]
[[bench]]
name = "mpmc_channel"
harness = false
[[bench]]
name = "mutex"
harness = false
[[bench]]
name = "semaphore"
harness = false
[dependencies.futures-core]
version = "^0.3"
default-features = false
[dependencies.lock_api]
version = "0.4.1"
[dependencies.parking_lot]
version = "0.12.0"
optional = true
[dev-dependencies.async-std]
version = "1.4"
[dev-dependencies.criterion]
version = "0.3.0"
[dev-dependencies.crossbeam]
version = "0.7"
[dev-dependencies.futures]
version = "0.3.0"
features = ["async-await"]
default-features = true
[dev-dependencies.futures-test]
version = "0.3.0"
default-features = true
[dev-dependencies.lazy_static]
version = "1.4.0"
[dev-dependencies.pin-utils]
version = "0.1.0"
[dev-dependencies.rand]
version = "0.7"
[dev-dependencies.signal-hook]
version = "0.1.11"
[dev-dependencies.tokio]
version = "1.14"
features = ["full"]
[features]
alloc = ["futures-core/alloc"]
default = ["std"]
std = [
"alloc",
"parking_lot",
]