Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "aya"
  3. version = "0.11.0"
  4. description = "An eBPF library with a focus on developer experience and operability."
  5. keywords = ["ebpf", "bpf", "linux", "kernel"]
  6. license = "MIT OR Apache-2.0"
  7. authors = ["The Aya Contributors"]
  8. repository = "https://github.com/aya-rs/aya"
  9. readme = "README.md"
  10. documentation = "https://docs.rs/aya"
  11. edition = "2021"
  12. [dependencies]
  13. libc = { version = "0.2.105" }
  14. thiserror = "1"
  15. object = { version = "0.29", default-features = false, features = ["std", "read_core", "elf"] }
  16. bitflags = "1.2.1"
  17. bytes = "1"
  18. lazy_static = "1"
  19. parking_lot = { version = "0.12.0", features = ["send_guard"] }
  20. futures = { version = "0.3.12", optional = true, default-features = false, features = ["std"] }
  21. tokio = { version = "1.2.0", features = ["macros", "rt", "rt-multi-thread", "net"], optional = true }
  22. async-std = { version = "1.9.0", optional = true }
  23. async-io = { version = "1.3", optional = true }
  24. log = "0.4"
  25. [dev-dependencies]
  26. matches = "0.1.8"
  27. [features]
  28. default = []
  29. async = ["futures"]
  30. async_tokio = ["tokio", "async"]
  31. async_std = ["async-std", "async-io", "async"]