-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 844 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
[package]
name = "torrust-linting"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
default-run = "linter"
description = "Linting utilities for Torrust projects"
authors = [ "Torrust Organization <https://torrust.com>" ]
documentation = "https://docs.rs/torrust-linting"
homepage = "https://torrust.com"
repository = "https://github.com/torrust/torrust-linting"
license = "MIT"
readme = "README.md"
keywords = [ "torrust", "linting", "cli" ]
categories = [ "development-tools", "command-line-utilities" ]
include = [ "/src", "/examples", "LICENSE", "README.md" ]
[lib]
name = "torrust_linting"
path = "src/lib.rs"
[[bin]]
name = "linter"
path = "src/bin/linter.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.0", features = [ "derive" ] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }