1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "leakguard"
dynamic = ["version"] # pulled from Cargo.toml automatically
description = "leakguard — fast secret scanner for your codebase"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
keywords = ["security", "secrets", "scanner", "sast", "devops"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"Environment :: Console",
"Intended Audience :: Developers",
]
[project.urls]
Homepage = "https://github.com/adrian-lorenz/leakguard"
Repository = "https://github.com/adrian-lorenz/leakguard"
Issues = "https://github.com/adrian-lorenz/leakguard/issues"
[project.scripts]
leakguard = "leakguard:run_cli"
[tool.maturin]
bindings = "pyo3"
features = ["extension-module"]
|