-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
67 lines (55 loc) · 1.27 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "cargo-remark"
version = "0.1.2"
edition = "2021"
#rust-version = "1.72.0"
description = "Cargo subcommand for displaying LLVM optimization remarks from compiling Rust programs."
repository = "https://github.com/kobzol/cargo-remark"
authors = ["Jakub Beránek <[email protected]>"]
keywords = [
"llvm",
"optimization",
"remark",
"cargo",
]
categories = ["development-tools::cargo-plugins"]
readme = "README.md"
license = "MIT"
include = [
"src/**/*.rs",
"templates",
"Cargo.toml",
"README.md"
]
[dependencies]
# Serialization
serde = { version = "1", features = ["derive", "rc"] }
serde_yaml = "0.9"
serde_json = "1"
# Data structures
hashbrown = { version = "0.13", features = ["rayon", "serde"] }
fxhash = "0.2"
# Error handling
anyhow = "1"
# Logging
log = "0.4"
env_logger = "0.10"
# Templates
askama = { version = "0.12", features = ["serde-json"] }
rust-embed = "6.6"
html-escape = "0.2"
# CLI
clap = { version = "4.3", features = ["derive"] }
indicatif = "0.17"
colored = "2.0.0"
opener = "0.6"
rustc-demangle = "0.1"
regex = "1.9"
rayon = "1.7"
cargo_metadata = "0.15"
mimalloc = { version = "0.1", default-features = false, optional = true }
[dev-dependencies]
insta = "1.29"
tempfile = "3.5"
[features]
default = ["mimalloc"]