-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 953 Bytes
/
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
[package]
name = "hackscanner"
version = "0.5.0-dev"
authors = ["Daniel Corn <info@cundd.net>"]
edition = "2018"
[lib]
name = "hackscanner_lib"
path = "src/lib.rs"
[[bin]]
name = "hackscanner"
path = "src/bin.rs"
[features]
backtrace = ["error-chain/backtrace"]
json = ["serde_json"]
yaml = ["serde_yaml"]
fts = []
jemalloc = ["jemallocator"]
default = ["backtrace", "json", "yaml"]
[dependencies]
walkdir = "^2.2.9"
regex = "^1.2.0"
error-chain = { version = "^0.12.1", default-features = false }
log = { version="^0.4.8", features = ["release_max_level_debug"] }
simplelog = "^0.6.0"
clap = "^2.33.0"
ansi_term = "^0.12.0"
term = "^0.6.0"
libc = "^0.2.60"
lazy_static = "^1.4.0"
serde = { version = "^1.0", features = ["derive"] }
serde_yaml = { version = "^0.8.23", optional = true }
serde_json = { version = "^1.0.79", optional = true }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = { version="0.3.2", optional = true }