-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
50 lines (47 loc) · 1.37 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
[package]
name = "dmlive"
version = "5.5.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
# tokio-rustls = "0.22"
# webpki-roots = "*"
# tokio-tungstenite = { version = "0.23", features = ["rustls-tls-webpki-roots"] }
tokio-tungstenite = { version = "0.24", features = ["native-tls-vendored"] }
reqwest = { version = "0.12", default-features = false, features = ["http2", "brotli", "deflate", "gzip", "json", "native-tls-vendored", "cookies"] }
log = "0.4"
env_logger = "0.11"
clap = { version = "4", features = ["derive"] }
serde_json = "1.0"
serde = { version = "1", features = ["derive"] }
bincode = "1.3"
rand = "0.8"
regex = "1.10"
fancy-regex = "0.13"
uuid = { version = "1.10", features = ["v4"] }
chrono = "0.4"
url = "2.5"
urlencoding = "2.1"
base64 = "0.22"
md5 = "*"
libc = "0.2"
toml = "0.8"
html-escape = "0.2"
futures = "0.3"
roxmltree = "0.20"
async-channel = "2.3"
directories = "5.0"
anyhow = "1"
bytes = "1.7"
# boa_engine = { features = ["console"], version = "0.15.0" }
tars-stream = { path = "tars-stream"}
ring = "*"
cbc = "*"
aes = "*"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
async-compression = { version = "0.4", features = ["tokio", "deflate", "brotli"] }
[profile.release]
panic = 'abort'
opt-level = 3
lto = true