Cargo.toml 638 B

12345678910111213141516171819202122232425262728293031323334
  1. [project]
  2. # Project metadata
  3. name = "rbpf"
  4. version = "0.0.3"
  5. authors = ["Quentin Monnet <quentin.monnet@6wind.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.1.1"
  23. libc = "0.2.0"
  24. [dev-dependencies]
  25. byteorder = "0.5.3"
  26. elf = "0.0.10"
  27. json = "0.11.4"