-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 784 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 784 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 = "redpen-linter"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Rust linter"
authors = ["Esteban Küber <esteban@kuber.com.ar>"]
#rust-version = "nightly-2024-05-06"
documentation = "https://docs.rs/redpen-linter"
repository = "https://github.com/estebank/redpen"
[dependencies]
home = "0.5"
[dev-dependencies]
compiletest_rs = { version = "0.10", features = [ "tmp" ] }
[package.metadata.rust-analyzer]
# This crate uses #![feature(rustc_private)] to access `rustc` APIs.
# We're tied to the specific `rustc` version 1.74.0-nigthly 2024-05-06.
rustc_private = true
[[bin]]
path = "commands/redpen.rs"
name = "redpen"
[[bin]]
path = "commands/wrapper.rs"
name = "redpen_wrapper"
[[bin]]
path = "src/main.rs"
name = "rustc_redpen"