4
0

Cargo.toml 647 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. # Project metadata
  3. name = "rbpf"
  4. version = "0.1.0"
  5. authors = ["Quentin <quentin@isovalent.com>"]
  6. # Additional metadata for packaging
  7. description = "Virtual machine and JIT compiler for eBPF programs"
  8. repository = "https://github.com/qmonnet/rbpf"
  9. readme = "README.md"
  10. keywords = ["BPF", "eBPF", "interpreter", "JIT", "filtering"]
  11. license = "Apache-2.0/MIT"
  12. # Packaging directives
  13. include = [
  14. "src/**",
  15. "examples/**",
  16. "tests/**",
  17. "bench/**",
  18. "LICENSE*",
  19. "Cargo.toml",
  20. ]
  21. [dependencies]
  22. combine = "2.5"
  23. libc = "0.2"
  24. time = "0.1"
  25. byteorder = "1.2"
  26. [dev-dependencies]
  27. elf = "0.0.10"
  28. json = "0.11"
  29. hex = "0.4.3"