-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (31 loc) · 943 Bytes
/
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
[package]
name = "goup"
description = "A simple version manager for Go written in Rust! 🚀"
version = "1.7.0"
edition = "2021"
authors = ["Ringo Hoffmann <[email protected]>"]
license = "MIT"
repository = "https://github.com/zekroTJA/goup"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.2.5", features = ["derive"] }
console = "0.15.5"
directories = "5.0.1"
flate2 = "1.0.26"
indicatif = "0.17.8"
nom = "7.1.3"
reqwest = { version = "0.12", default-features = false, features = ["json", "blocking", "rustls-tls"] }
serde = { version = "1.0.162", features = ["derive"] }
spinoff = "0.8.0"
tar = "0.4.38"
tempfile = "3.5.0"
thiserror = "1.0.44"
whattheshell = "1.0.0"
zip = { version = "2.1", default-features = false, features = ["deflate"] }
[profile.release]
strip = true
opt-level = "s"
codegen-units = 1
lto = true
panic = "unwind"