-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 781 Bytes
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
[package]
name = "drcom4scut"
version = "0.3.2"
rust-version = "1.92"
authors = ["SeaLoong <sealoongw@foxmail.com>"]
edition = "2024"
description = "A 3rd-party Drcom client for SCUT."
license = "GPL-3.0-or-later"
readme = "README.md"
[dependencies]
bytes = "1.11.0"
chrono = "0.4.43"
clap = { version = "4.5", features = ["cargo"] }
crossbeam-channel = "0.5.15"
encoding_rs = "0.8.35"
hex = "0.4.3"
hostname = "0.4.2"
log = "0.4.29"
md-5 = "0.10.6"
pnet = "0.35"
rand = "0.9.2"
trust-dns-resolver = "0.23.2"
[dependencies.config]
version = "0.15.19"
default-features = false
features = ["yaml"]
[dependencies.log4rs]
version = "1.4.0"
features = ["gzip"]
optional = true
[profile.release]
opt-level = 3
lto = true
panic = 'abort'
strip = true
[features]
default = ["log4rs"]