Cargo.toml 843 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "aya"
  3. version = "0.10.0"
  4. authors = ["Alessandro Decina <[email protected]>"]
  5. edition = "2018"
  6. [dependencies]
  7. libc = { version = "0.2" }
  8. thiserror = "1"
  9. object = { version = "0.23", default-features = false, features = ["std", "read_core", "elf"] }
  10. bitflags = "1.2.1"
  11. bytes = "1"
  12. lazy_static = "1"
  13. parking_lot = { version = "0.11.1", features = ["send_guard"] }
  14. futures = { version = "0.3.12", optional = true, default-features = false, features = ["std"] }
  15. tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true }
  16. async-std = { version = "1.9.0", optional = true }
  17. async-io = { version = "1.3", optional = true }
  18. [dev-dependencies]
  19. matches = "0.1.8"
  20. [features]
  21. default = []
  22. async = ["futures"]
  23. async_tokio = ["tokio", "async"]
  24. async_std = ["async-std", "async-io", "async"]