-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 818 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 818 Bytes
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
[workspace]
members = ["crates/socket-patch-core", "crates/socket-patch-cli"]
resolver = "2"
[workspace.package]
version = "2.1.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/SocketDev/socket-patch"
[workspace.dependencies]
socket-patch-core = { path = "crates/socket-patch-core", version = "2.1.1" }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
hex = "0.4"
reqwest = { version = "0.12", features = ["rustls-tls", "json"], default-features = false }
tokio = { version = "1", features = ["full"] }
thiserror = "2"
walkdir = "2"
uuid = { version = "1", features = ["v4"] }
dialoguer = "0.11"
indicatif = "0.17"
tempfile = "3"
regex = "1"
once_cell = "1"
[profile.release]
strip = true
lto = true
opt-level = "s"