Cargo.toml 651 B

1234567891011121314151617181920212223242526272829303132333435
  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. time = "0.1"
  25. [dev-dependencies]
  26. byteorder = "0.5.3"
  27. elf = "0.0.10"
  28. json = "0.11.4"