Cargo.toml 456 B

1234567891011121314151617181920
  1. [project]
  2. # Project metadata
  3. name = "rbpf"
  4. version = "0.0.1"
  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. exclude = ["misc/*"]
  14. [dependencies]
  15. libc = "0.2.0"