123456789101112131415161718192021222324 |
- [project]
- # Project metadata
- name = "rbpf"
- version = "0.0.3"
- authors = ["Quentin Monnet <quentin.monnet@6wind.com>"]
- # Additional metadata for packaging
- description = "Virtual machine and JIT compiler for eBPF programs"
- repository = "https://github.com/qmonnet/rbpf"
- readme = "README.md"
- keywords = ["BPF", "eBPF", "interpreter", "JIT", "filtering"]
- license = "Apache-2.0/MIT"
- # Packaging directives
- include = [
- "**/*.rs",
- "LICENSE*",
- "Cargo.toml",
- ]
- [dependencies]
- libc = "0.2.0"
|