-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (33 loc) · 857 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "fork-ebpf"
version = "0.1.0"
edition = "2021"
[dependencies]
aya-bpf = { git = "https://github.com/vadorovsky/aya", branch = "btf-maps" }
aya-log-ebpf = { git = "https://github.com/vadorovsky/aya", branch = "btf-maps" }
fork-common = { path = "../../fork-common" }
[patch."https://github.com/aya-rs/aya"]
aya-bpf = { git = "https://github.com/vadorovsky/aya", branch = "btf-maps" }
aya-bpf-macros = { git = "https://github.com/vadorovsky/aya", branch = "btf-maps" }
[[bin]]
name = "fork"
path = "src/main.rs"
[profile.dev]
opt-level = 3
debug = 2
debug-assertions = false
overflow-checks = false
lto = true
panic = "abort"
incremental = false
codegen-units = 1
rpath = false
[profile.release]
lto = true
debug = 2
panic = "abort"
codegen-units = 1
[target.bpfel-unknown-none]
rustflags = ["-C debuginfo=2"]
[workspace]
members = []