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.
22 lines
552 B
TOML
22 lines
552 B
TOML
[package]
|
|
name = "aya-ebpf-macros"
|
|
version = "0.1.0"
|
|
description = "Proc macros used by aya-ebpf"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
proc-macro-error = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, default-features = true, features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
aya-ebpf = { path = "../ebpf/aya-ebpf", version = "^0.1.0", default-features = false }
|