mirror of
https://github.com/DaLaw2/NetGuardia.git
synced 2026-08-24 22:20:28 +09:00
19 lines
351 B
TOML
19 lines
351 B
TOML
[package]
|
|
name = "common"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
user = ["aya", "serde"]
|
|
kernel = ["aya-ebpf"]
|
|
|
|
[dependencies]
|
|
aya = { workspace = true, optional = true }
|
|
aya-ebpf = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
network-types = { workspace = true }
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|