-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
54 lines (48 loc) · 1.14 KB
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "pyrepscan"
version = "0.9.0"
authors = ["Gal Ben David <gal@intsights.com>"]
edition = "2018"
description = "A Git Repository Secrets Scanner written in Rust"
readme = "README.md"
repository = "https://github.com/intsights/pyrepscan"
homepage = "https://github.com/intsights/pyrepscan"
license = "MIT"
keywords = [
"git",
"secrets",
"scanner",
"rust",
"pyo3",
]
[package.metadata.maturin]
requires-python = ">=3.6"
classifier = [
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Rust",
]
[lib]
name = "pyrepscan"
crate-type = ["cdylib"]
[dependencies]
regex = "1"
chrono = "0.4"
num_cpus = "1"
parking_lot = "0.11"
crossbeam = "0.8"
crossbeam-utils = "0.8"
[dependencies.git2]
version = "0.13"
[dependencies.pyo3]
version = "0.13.2"
features = ["extension-module"]
[profile.release]
lto = true
panic = "abort"