2025-02-21 18:55:16 +01:00
|
|
|
# SPDX-FileCopyrightText: Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "parental-ctrls-nss"
|
|
|
|
description = "linux-parental-controls: NSS module to block DNS queries to adult domains"
|
|
|
|
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2025-02-22 00:35:01 +01:00
|
|
|
rust-version = { workspace = true }
|
2025-02-21 18:55:16 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "nss_parental_ctrls"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
bindgen = { workspace = true }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = { workspace = true }
|
|
|
|
nix = { workspace = true }
|