-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (58 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
67 lines (58 loc) · 1.43 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "banderole"
description = "A cross-platform Node.js single-executable bundler"
homepage = "https://github.com/zhom/banderole"
repository = "https://github.com/zhom/banderole"
license = "MIT"
authors = ["zhom <contact@donutbrowser.com>"]
version = "0.2.2"
edition = "2021"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["stream", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4"
uuid = { version = "1.0", features = ["v4"] }
sha2 = "0.10"
zip = "4"
directories = "6"
anyhow = "1.0"
walkdir = "2.4"
futures-util = "0.3"
chrono = { version = "0.4", features = ["serde"] }
tempfile = "3.20"
base64 = "0.22"
indicatif = "0.18"
log = "0.4"
env_logger = "0.11"
indicatif-log-bridge = "0.2"
console = "0.16"
flate2 = "1.0"
tar = "0.4"
sevenz-rust = "0.6"
lzma-rs = "0.3"
[build-dependencies]
reqwest = { version = "0.12", features = ["blocking"] }
[dev-dependencies]
serial_test = "3"
[[test]]
name = "integration_test"
harness = true
[[test]]
name = "workspace_integration_test"
harness = true
[[test]]
name = "local_link_integration_test"
harness = true
[[test]]
name = "workspace_version_integration_test"
harness = true
[[test]]
name = "concurrent_execution_integration_test"
harness = true
# Run tests sequentially to avoid resource conflicts
[profile.test]
opt-level = 0
debug = true