-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 816 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
28
29
30
31
32
33
[package]
name = "cargo-no-std"
version = "0.1.0"
authors = ["Wojciech Graj <me@w-graj.net>"]
edition = "2024"
rust-version = "1.88.0"
description = "Validate no_std compliance"
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/wojciech-graj/cargo-no-std"
keywords = ["no-std"]
categories = ["development-tools", "development-tools::cargo-plugins", "command-line-utilities"]
[dependencies]
anyhow = "1.0"
cargo_metadata = "0.23"
cargo_toml = "0.22"
clap = { version = "4.0", features = ["cargo", "derive"] }
clap-cargo = { version = "0.18", features = ["cargo_metadata"] }
colored = "3.0"
env_logger = "0.11"
indicatif = "0.18"
indicatif-log-bridge = "0.2"
log = "0.4"
quote = "1.0"
rayon = "1.0"
serde_json = "1.0"
tempfile = "3.0"
toml = "0.9"
[dev-dependencies]
assert_cmd = "2.1"