29 lines
699 B
TOML
29 lines
699 B
TOML
# 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 }
|
|
|
|
[lib]
|
|
name = "nss_parental_ctrls"
|
|
path = "src/lib.rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[profile.release]
|
|
panic = "unwind" # We rely on this
|
|
|
|
[build-dependencies]
|
|
bindgen = { workspace = true }
|
|
|
|
[dependencies]
|
|
libc = { workspace = true }
|
|
nix = { workspace = true }
|