-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 1.07 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
[package]
name = "bgt"
version = "0.1.2"
authors = ["Will Clark <will@256k1.dev>"]
edition = "2021"
description = "A tool for automated Guix builds of Bitcoin Core"
readme = "README.md"
homepage = "https://github.com/bitcoin-dev-tools/bgt-builder"
repository = "https://github.com/bitcoin-dev-tools/bgt-builder"
license = "MIT"
keywords = ["bitcoin", "guix", "builder"]
categories = ["command-line-utilities", "development-tools::build-utils"]
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.9", features = ["derive"] }
dirs = "5.0.1"
env_logger = "0.11.3"
flate2 = "1.0.30"
log = "0.4.22"
octocrab = "0.39.0"
regex = "1.10.6"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
tar = "0.4.41"
tokio = { version = "1.44.2", features = ["full"] }
toml = "0.8.19"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.