mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
290 B
TOML
20 lines
290 B
TOML
[package]
|
|
name = "bpf"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
default = []
|
|
user = [ "aya" ]
|
|
|
|
[dependencies]
|
|
aya-bpf = { path = "../../bpf/aya-bpf" }
|
|
aya = { path = "../../aya", optional=true }
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "xdp"
|
|
path = "src/xdp/main.rs" |