-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.06 KB
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
[package]
authors = ["Leron Gray <daddycocoaman@gmail.com>"]
description = "CirroDash - A dashboard and analysis tool for Cirro"
edition = "2024"
name = "cirro-dash"
repository = "https://github.com/bishopfox/cirrodash"
version = "1.0.0"
[dependencies]
axum = "0.8"
clap = { version = "4", features = ["derive", "env"] }
futures = "0.3.31"
hickory-resolver = "0.25.2"
http-body-util = "0.1"
icann-rdap-client = "0.0.26"
icann-rdap-common = "0.0.26"
mime_guess = "2.0.5"
moka = { version = "0.12.12", features = ["future"] }
psl = "2.1.178"
rust-embed = "8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
tower-http = { version = "0.6", features = [
"compression-gzip",
"trace",
"limit",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
url = "2.5.8"
[profile.dev]
debug = true
opt-level = 0
[profile.release]
codegen-units = 1
lto = true
strip = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"