-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
63 lines (60 loc) · 1.71 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
[package]
name = "m3u-filter"
version = "2.1.3"
edition = "2021"
[profile.release]
debug = false
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
strip = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive", "rc"] }
serde_yaml = "0.9"
serde_json = "1"
quick-xml = { version = "0.37", features = ["serialize"] }
regex = "1.11"
clap = { version = "4", features = ["derive"] }
url = "2.5"
reqwest = { version = "0", features = ["blocking", "json", "stream", "rustls-tls"] }
chrono = "0.4"
cron = "0.15"
actix-web = "4.9"
actix-files = "0"
actix-cors = "0"
actix-rt = "2.10"
actix-web-httpauth = "0.8"
jsonwebtoken = "9.3"
rust-argon2 = "2.1"
futures = "0.3"
path-clean = "1"
pest = "2.7"
pest_derive = "2.7"
enum-iterator = "2"
openssl = { version = "*", features = ["vendored"] } #https://docs.rs/openssl/0.10.34/openssl/#vendored
unidecode = "0"
mime = "0.3"
log = "0.4"
env_logger = "0.11"
rustelebot = "0.3"
bincode = "1.3"
rand = "0.9"
rpassword = "7.3"
flate2 = "1"
blake3 = "1.5"
bytes = "1.10"
tokio-stream = { version = "0.1", features = ["sync"] }
tokio = "1.43"
paste = "1.0"
tempfile = "3.15"
ruzstd = "0"
filetime = "0.2"
parking_lot = "0.12"
#[cfg(target_os = "macos")]
libc = "0"
#[cfg(target_os = "windows")]
winapi = { version = "0", features = ["psapi", "minwindef", "processthreadsapi"] }
# [target.'cfg(not(target_env = "msvc"))'.dependencies]
# tikv-jemallocator = { version = "*", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] }