-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.04 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
[workspace]
members = ["crates/socket-patch-core", "crates/socket-patch-cli"]
resolver = "2"
[workspace.package]
version = "3.0.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/SocketDev/socket-patch"
[workspace.dependencies]
socket-patch-core = { path = "crates/socket-patch-core", version = "=3.0.0" }
clap = { version = "=4.5.60", features = ["derive", "env"] }
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
sha2 = "=0.10.9"
hex = "=0.4.3"
reqwest = { version = "=0.12.28", features = ["rustls-tls", "json"], default-features = false }
tokio = { version = "=1.50.0", features = ["full"] }
thiserror = "=2.0.18"
walkdir = "=2.5.0"
uuid = { version = "=1.21.0", features = ["v4"] }
dialoguer = "=0.11.0"
indicatif = "=0.17.11"
tempfile = "=3.26.0"
regex = "=1.12.3"
once_cell = "=1.21.3"
qbsdiff = "=1.4.4"
tar = "=0.4.45"
flate2 = "=1.1.9"
wiremock = "=0.6.5"
portable-pty = "=0.9.0"
testcontainers = "=0.27.3"
base64 = "=0.22.1"
serial_test = "=3.4.0"
[profile.release]
strip = true
lto = true
opt-level = "s"