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.
30 lines
687 B
TOML
30 lines
687 B
TOML
[package]
|
|
name = "integration-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
assert_matches = "1.5.0"
|
|
aya = { path = "../../aya" }
|
|
aya-log = { path = "../../aya-log" }
|
|
aya-obj = { path = "../../aya-obj" }
|
|
libc = { version = "0.2.105" }
|
|
log = "0.4"
|
|
object = { version = "0.31", default-features = false, features = [
|
|
"elf",
|
|
"read_core",
|
|
"std",
|
|
] }
|
|
rbpf = "0.2.0"
|
|
tokio = { version = "1.24", default-features = false, features = [
|
|
"macros",
|
|
"time",
|
|
] }
|
|
|
|
[build-dependencies]
|
|
cargo_metadata = { version = "0.15.4", default-features = false }
|
|
which = { version = "4.4.0", default-features = false }
|
|
xtask = { path = "../../xtask" }
|