Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "aya"
  3. version = "0.13.0"
  4. description = "An eBPF library with a focus on developer experience and operability."
  5. keywords = ["bpf", "ebpf", "kernel", "linux"]
  6. readme = "README.md"
  7. documentation = "https://docs.rs/aya"
  8. rust-version = "1.80.0"
  9. authors.workspace = true
  10. license.workspace = true
  11. repository.workspace = true
  12. homepage.workspace = true
  13. edition.workspace = true
  14. [dependencies]
  15. assert_matches = { workspace = true }
  16. async-io = { workspace = true, optional = true }
  17. aya-obj = { path = "../aya-obj", version = "^0.2.0", features = ["std"] }
  18. bitflags = { workspace = true }
  19. bytes = { workspace = true }
  20. libc = { workspace = true }
  21. log = { workspace = true }
  22. object = { workspace = true, features = ["elf", "read_core", "std", "write"] }
  23. once_cell = { workspace = true }
  24. thiserror = { workspace = true }
  25. tokio = { workspace = true, features = ["rt"], optional = true }
  26. [dev-dependencies]
  27. tempfile = { workspace = true }
  28. [features]
  29. default = []
  30. async_tokio = ["tokio/net"]
  31. async_std = ["dep:async-io"]
  32. [package.metadata.docs.rs]
  33. all-features = true
  34. rustdoc-args = ["--cfg", "docsrs", "-D", "warnings"]