-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
64 lines (60 loc) · 1.56 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
[package]
name = "sdl"
version = "0.1.3"
edition = "2021"
rust-version = "1.75"
readme = "README.md"
repository = "https://github.com/Funami580/sdl"
license = "MIT"
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.4", features = ["derive", "cargo"] }
tokio = { version = "1.33", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["compat"] }
futures-util = "0.3"
thirtyfour = "0.32.0-rc.8"
selenium-manager = { git = "https://github.com/SeleniumHQ/selenium", tag = "selenium-4.14.0" }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-native-roots", "stream", "gzip", "json"] }
reqwest-partial-retry = "0.1"
reqwest-retry = "0.3"
reqwest-middleware = "0.2"
hyper = "1.0"
serde_json = "1.0"
bytes = "1.5"
url = "2.5"
form_urlencoded = "1.2"
m3u8-rs = "5.0"
dirs = "5.0"
zip-extensions = "0.6"
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
pathsearch = "0.2"
portpicker = "0.1"
interprocess = { version = "1.2", features = ["tokio_support"] }
rand = "0.8"
regex = "1.10"
once_cell = "1.18"
enum_dispatch = "0.3"
enum-iterator = "1.4"
indicatif = { git = "https://github.com/Funami580/indicatif", rev = "ade6307c5557dee7924cea29b557d20ccf1ecc3d" }
number_prefix = "0.4"
rust-lapper = "1.1"
console = "0.15"
bitmask-enum = "2.2"
base64 = "0.21"
aes = "0.8"
cbc = "0.1"
log = "0.4"
env_logger = "0.10"
chrono = "0.4"
anyhow = "1.0"
[[bin]]
name = "sdl"
path = "src/main.rs"
[lib]
name = "sdl"
path = "src/lib.rs"
[profile.release]
lto = true
strip = "symbols"
codegen-units = 1