22 lines
851 B
TOML
22 lines
851 B
TOML
[package]
|
|
name = "osquery-voidlinux"
|
|
version = "0.1.0"
|
|
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
|
|
edition = "2021"
|
|
description = "osquery extension for Void Linux"
|
|
repository = "https://git.jcg.re/jcgruenhage/osquery-voidlinux/"
|
|
license = "AGPL-3.0-or-later"
|
|
keywords = ["osquery", "voidlinux", "xbps"]
|
|
|
|
|
|
[dependencies]
|
|
clap = { version = "3", features = ["derive", "wrap_help"] }
|
|
osquery-rust = "0.1.1"
|
|
plist = { version = "1.3.2", features = ["serde"] }
|
|
regex = "1.6.0"
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
|
|
[patch.crates-io]
|
|
osquery-rust = { git = "https://github.com/jcgruenhage/osquery-rust.git", branch = "main" }
|
|
osquery-rust-codegen = { git = "https://github.com/jcgruenhage/osquery-rust.git", branch = "main" }
|
|
plist = { git = "https://github.com/jcgruenhage/rust-plist.git", branch = "quick-xml" }
|