Files
LibreQoS/src/rust/lqos_sys/Cargo.toml
Herbert "TheBracket c17d269ad6 Rust licenses (#292)
* Add license specifier to all Cargo.toml files

Explicitly specify `license = "GPL-2.0-only"` in each Cargo.toml
file. The wording is from the SPX guidelines.

* Add shell script to check licenses of Rust projects

rust/check_licenses.sh automatically verifies all dependencies
for accidental usage of GPLv3. Since basically nobody in the
universe uses GPLv3, it tends not to do much.
2023-03-23 11:48:03 -07:00

22 lines
372 B
TOML

[package]
name = "lqos_sys"
version = "0.1.0"
edition = "2021"
license = "GPL-2.0-only"
[dependencies]
nix = "0"
libbpf-sys = "1"
anyhow = "1"
byteorder = "1.4"
lqos_bus = { path = "../lqos_bus" }
lqos_config = { path = "../lqos_config" }
log = "0"
lqos_utils = { path = "../lqos_utils" }
once_cell = "1"
dashmap = "5"
thiserror = "1"
[build-dependencies]
bindgen = "0"