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.
25 lines
648 B
TOML
25 lines
648 B
TOML
[package]
|
|
name = "aya-common"
|
|
version = "0.1.0"
|
|
description = "Code shared between aya and aya-bpf crates."
|
|
keywords = ["ebpf", "bpf", "linux", "kernel"]
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["The Aya Contributors"]
|
|
repository = "https://github.com/aya-rs/aya"
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/aya"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
regex = {version = "1", optional = true}
|
|
thiserror = {version = "1", optional = true}
|
|
memoffset = {version = "0.6", optional = true}
|
|
lazy_static = {version = "1", optional = true}
|
|
|
|
[features]
|
|
default = []
|
|
user = [ "regex", "thiserror", "memoffset", "lazy_static" ]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|