mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
* 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.
22 lines
372 B
TOML
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"
|