forked from CyAxe/lotus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (63 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "lotus"
version = "0.5.0-beta"
edition = "2021"
license = "GPLv2"
keywords = ["security", "automation", "bugbounty"]
categories = ["command-line-utilities"]
description = "Fast Web Security Scanner written in Rust based on Lua Scripts"
authors = ["Khaled Nassar <knassar702@gmail.com>"]
readme = "README.md"
[features]
default = ["lua53"]
lua54 = ["tealr/mlua_lua54"]
lua53 = ["tealr/mlua_lua53"]
lua52 = ["tealr/mlua_lua52"]
lua51 = ["tealr/mlua_lua51"]
luajit = ["tealr/mlua_luajit"]
vendored = ["tealr/mlua_vendored"]
[[bin]]
name = "lotus"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# LUA
mlua = { version = "0.8" , features=["serialize"]}
tealr = {version="0.9.0-alpha4", features=["mlua", "mlua_async"]}
tealr_derive="=0.9.0-alpha4"
# Threading
futures = "0.3.24"
tokio = { version = "1.21.0", features = ["full"] }
lazy_static = "1.4.0"
# LOGGING & Console
log = "0.4.17"
structopt = "0.3.20"
fern = "0.6.1"
humantime = "2.1.0"
chrono = "0.4.22"
console = "0.15.1"
atty = "0.2.14"
indicatif = "0.17.0"
thiserror = "1.0"
# REGEX AND MATCHES
regex = "1.7.3"
scraper = "0.13.0"
# Dirs
glob = "0.3.0"
# Encoding
base64 = "0.13.1"
url-escape = "0.1.1"
html-escape = "0.2.13"
# HTTP & URLS
serde_json = "1.0.85"
serde_urlencoded = "0.7.1"
serde = { version = "1.0.144", features = ["derive"] }
multipart = "0.18.0"
reqwest = { version = "0.11.12", features = ["multipart"] }
url = "2.2.2"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
panic = "abort"
strip = true