made it also possible to download individual beacons as opposed to just the installer, to provide more options and make it easier to test
18 lines
467 B
TOML
18 lines
467 B
TOML
[package]
|
|
name = "sparse-unix-beacon"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
errno = "0.3"
|
|
async-trait = "0.1.86"
|
|
tokio = { version = "1.43.0", features = ["fs", "macros", "rt"] }
|
|
thiserror = "2.0.11"
|
|
|
|
sparse-beacon = { version = "0.7.0", path = "../sparse-beacon" }
|
|
sparse-actions = { version = "2.0.0", path = "../sparse-actions" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
nl-sys = { version = "0.1.0", path = "../nl-sys" }
|