-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
122 lines (115 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[package]
name = "secutils"
version = "1.0.0-beta.2"
authors = ["Aleh Zasypkin <[email protected]>"]
description = "An open-source, versatile, yet simple security toolbox for engineers and researchers."
edition = "2021"
[[bin]]
name = "secutils"
path = "src/main.rs"
[workspace]
members = [
"dev/crates/*"
]
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.9.0"
actix-web-httpauth = "0.8.2"
addr = { version = "0.15.6", default-features = false }
anyhow = "1.0.86"
async-stream = "0.3.5"
bytes = "1.7.1"
chrono = { version = "0.4.38", default-features = false }
clap = "4.5.16"
content-security-policy = "0.5.2"
cron = "0.12.1"
deno_core = "0.303.0"
directories = "5.0.1"
dotenvy = "0.15.7"
structured-logger = "1.0.3"
figment = "0.10.19"
futures = "0.3.30"
handlebars = "6.0.0"
hex = "0.4.3"
html5ever = "0.28.0"
humantime = "2.1.0"
itertools = "0.13.0"
jsonwebtoken = {version = "9.3.0", default-features = false }
lettre = { version = "0.11.7", default-features = false }
log = "0.4.22"
openssl = "0.10.66"
postcard = { version = "1.0.8", default-features = false }
rand_core = "0.6.4"
regex = "1.10.6"
reqwest = { version = "0.12.5", default-features = false }
rust-embed = "8.5.0"
serde = "1.0.208"
serde_bytes = "0.11.15"
serde_derive = "1.0.208"
serde_json = "1.0.125"
serde_repr = "0.1.19"
serde_with = "3.9.0"
similar = "2.6.0"
sqlx = { version = "0.8.0", default-features = false }
tantivy = "0.22.0"
thiserror = "1.0.63"
time = "0.3.36"
tlsh2 = "0.4.0"
tokio = "1.39.2"
tokio-cron-scheduler = "0.11.0"
trust-dns-resolver = "0.23.2"
url = "2.5.2"
urlencoding = "2.1.3"
uuid = "1.10.0"
zip = "2.1.6"
[dev-dependencies]
ctor = "0.2.8"
httpmock = "0.7.0"
insta = "1.39.0"
toml = "0.8.19"
[features]
default = [
"addr/std",
"bytes/serde",
"clap/cargo",
"clap/env",
"content-security-policy/serde",
"figment/env",
"figment/toml",
"handlebars/rust-embed",
"insta/filters",
"insta/json",
"insta/redactions",
"insta/toml",
"lettre/builder",
"lettre/smtp-transport",
"lettre/tokio1-rustls-tls",
"log/kv_serde",
"postcard/use-std",
"rand_core/std",
"reqwest/json",
"reqwest/rustls-tls-native-roots",
"serde_json/arbitrary_precision",
"serde_with/time_0_3",
"sqlx/json",
"sqlx/macros",
"sqlx/migrate",
"sqlx/runtime-tokio-rustls",
"sqlx/postgres",
"sqlx/time",
"sqlx/uuid",
"time/formatting",
"time/macros",
"tlsh2/diff",
"tokio/rt-multi-thread",
"tokio/macros",
"tokio-cron-scheduler/postgres_storage",
"url/serde",
"uuid/v7"
]
[profile.release]
strip = true
lto = true
panic = "abort"
[profile.dev.package.sqlx-macros]
opt-level = 3