-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (35 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 854 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
33
34
35
36
37
[package]
name = "jbundle"
version = "0.2.0"
edition = "2021"
description = "Package JVM applications into self-contained binaries"
license = "MIT"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dirs = "6"
flate2 = "1"
fs2 = "0.4"
indicatif = "0.18"
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
tar = "0.4"
tempfile = "3"
toml = "0.8"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
which = "8"
regex = "1"
zip = "2"
[profile.release]
strip = "symbols"
split-debuginfo = "packed"
debug = "full"
codegen-units = 1
incremental = false
lto = true
panic = "abort"