-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 900 Bytes
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
[package]
edition = "2021"
authors = [
"The Embedded WG Tools Team <tools@teams.rust-embedded.org>",
"Jorge Aparicio <jorge@japaric.io>",
]
categories = ["command-line-utilities", "development-tools"]
description = "Proxy for LLVM tools like llvm-nm, llvm-objdump and llvm-size"
documentation = "https://github.com/rust-embedded/cargo-binutils#cargo-binutils"
keywords = ["llvm", "size", "objdump", "nm"]
license = "MIT OR Apache-2.0"
name = "cargo-binutils"
readme = "README.md"
repository = "https://github.com/rust-embedded/cargo-binutils/"
version = "0.4.0"
rust-version = "1.78.0"
[dependencies]
cargo_metadata = "0.18.1"
clap = { version = "4.4.8", features = ["cargo", "wrap_help", "string"] }
regex = "1.5"
rustc-cfg = "0.5"
rustc-demangle = "0.1"
rustc_version = "0.4"
serde = "1.0"
toml = { version = "0.9", default-features = false, features = ["serde", "parse"] }
anyhow = "1.0"