-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathCargo.toml
85 lines (72 loc) · 2.72 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
[package]
name = "evebox"
# Suffix with -dev when not a release.
version = "0.20.1"
authors = ["Jason Ish <[email protected]>"]
edition = "2021"
description = "A web based Suricata event manager"
license = "MIT"
homepage = "https://evebox.org"
repository = "https://github.com/jasonish/evebox"
documentation = "https://evebox.org"
# This is not a guarantee, just helps notify me when the MSRV changes.
rust-version = "1.81.0"
[profile.release]
lto = true
opt-level = 3
[dependencies]
anyhow = "1.0.79"
thiserror = "1.0.56"
axum = { version = "0.7.5" }
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
axum-extra = { version = "0.9.3", default-features = false, features = ["cookie", "typed-header", "form"] }
hyper = "1.0"
tokio = { version = "1", default-features = false, features = ["signal", "macros", "rt-multi-thread"] }
tower-http = { version = "0.5", features = ["set-header", "trace", "limit"] }
futures = "0.3.21"
base64 = "0.22.1"
bcrypt = "0.15.0"
bytes = "1.5.0"
clap = { version = "4.5.4", features = ["env", "derive", "color"] }
sqlx = { version = "0.8.3", default-features = false, features = ["macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls", "json", "chrono"] }
# While sqlx is nice to use, Rusqlite is fast for bulk operations.
rusqlite = { version = "0.32.1", features = ["bundled"] }
# Hopefully this makes sure both sqlx and rusqlite are on the same version of libsqlite3-sys.
libsqlite3-sys = { version = "=0.30.1" }
filetime = "0.2.23"
glob = "0.3.1"
humantime = "2.1.0"
lazy_static = "1.4.0"
maxminddb = "0.23.0"
md5 = "0.7.0"
mime_guess = "2.0.4"
nom = "7.1.3"
percent-encoding = "2.3.1"
rand = "0.8.5"
reqwest = { version = "0.11.23", default-features = false, features = ["json", "rustls-tls", "rustls-tls-webpki-roots", "rustls-tls-native-roots"] }
rust-embed = { version = "8.2.0", features = ["compression", "debug-embed"] }
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.112"
serde_yaml = "0.9.30"
suricatax-rule-parser = { git = "https://github.com/jasonish/suricatax-rule-parser-rs" }
# Currently only used for tracing_subscriber based logging.
time = { version = "0.3.36", features = ["local-offset"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["std", "fmt", "env-filter", "time"] }
tracing-log = "0.2.0"
ulid = "1.1.0"
uuid = { version = "1.7.0", features = ["v4"] }
webbrowser = "0.8.12"
regex = "1.10.3"
libc = { version = "0.2.152", default-features = false }
rcgen = "0.12.1"
directories = "5.0.1"
gethostname = "0.4.3"
tempfile = "3.9.0"
inquire = "0.6.2"
chrono = { version = "0.4.38", default-features = false, features = ["std", "now", "serde"] }
log = "0.4.21"
owo-colors = "4.0.0"
indexmap = "2.2.6"
tokio-stream = "0.1.17"
tokio-util = "0.7.13"