-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
44 lines (41 loc) · 861 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
35
36
37
38
39
40
41
42
43
44
[package]
name = "cargo-pgo"
version = "0.2.9"
edition = "2021"
rust-version = "1.80.0"
description = "Cargo subcommand for optimizing Rust binaries with PGO and BOLT."
repository = "https://github.com/kobzol/cargo-pgo"
authors = ["Jakub Beránek <[email protected]>"]
keywords = [
"pgo",
"bolt",
"optimization",
"profile-guided-opt",
"cargo",
]
categories = ["development-tools::cargo-plugins"]
readme = "README.md"
license = "MIT"
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md"
]
[dependencies]
anyhow = "1"
which = "7"
clap = { version = "4.5", features = ["derive"] }
log = "0.4"
env_logger = "0.11"
colored = "3"
cargo_metadata = "0.19"
humansize = "2"
semver = "1"
tempfile = "3.14"
regex = "1.11"
once_cell = "1.20"
rustc-demangle = "0.1"
walkdir = "2.5"
shellwords = "1.1"
blake3 = "1.4"
version_check = "0.9"