-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
47 lines (43 loc) · 933 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
45
46
47
[package]
name = "cargo-pgo"
version = "0.2.8"
edition = "2021"
rust-version = "1.56.1"
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 = "4.2"
clap = { version = "3.2", features = ["derive"] }
log = "0.4"
env_logger = "0.9.0"
colored = "2.0.0"
cargo_metadata = "0.15.0"
humansize = "1.1.1"
semver = "1.0.12"
tempfile = "3.3.0"
regex = "1.6.0"
once_cell = "1.13.0"
rustc-demangle = "0.1"
walkdir = "2.3.2"
shellwords = "1.1.0"
blake3 = "1.3.1"
version_check = "0.9.4"
[dev-dependencies]
version_check = "0.9"