Cargo.toml 498 B

123456789101112131415161718192021222324
  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. "**/*.rs",
  15. "LICENSE*",
  16. "Cargo.toml",
  17. ]
  18. [dependencies]
  19. libc = "0.2.0"