You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/aya/Cargo.toml

27 lines
842 B
TOML

[package]
name = "aya"
version = "0.1.0"
authors = ["Alessandro Decina <alessandro.d@gmail.com>"]
edition = "2018"
[dependencies]
libc = { version = "0.2" }
thiserror = "1"
object = { version = "0.23", default-features = false, features = ["std", "read_core", "elf"] }
bitflags = "1.2.1"
bytes = "1"
lazy_static = "1"
parking_lot = { version = "0.11.1", features = ["send_guard"] }
futures = { version = "0.3.12", optional = true, default-features = false, features = ["std"] }
tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true }
async-std = { version = "1.9.0", optional = true }
async-io = { version = "1.3", optional = true }
[dev-dependencies]
matches = "0.1.8"
[features]
default = []
async = ["futures"]
async_tokio = ["tokio", "async"]
async_std = ["async-std", "async-io", "async"]