-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
76 lines (65 loc) · 1.83 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
68
69
70
71
72
73
74
75
76
[package]
name = "cargo-rdme"
description = "Cargo command to create your `README.md` from your crate's documentation"
version = "1.4.7-pre"
authors = ["Diogo Sousa <diogogsousa@gmail.com>"]
edition = "2021"
rust-version = "1.74.0"
homepage = "https://github.com/orium/cargo-rdme"
repository = "https://github.com/orium/cargo-rdme"
documentation = "https://docs.rs/cargo-rdme"
readme = "README.md"
keywords = [
"readme", "cargo", "documentation"
]
categories = [
"development-tools::cargo-plugins",
]
license = "MPL-2.0"
# What to include when packaging.
include = [
"/src/**/*.rs",
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE.md",
"/README.md",
"/release-notes.md",
]
[badges]
codecov = { repository = "orium/cargo-rdme", branch = "main", service = "github" }
[dependencies]
toml = "0.8.19"
thiserror = "2.0.0"
syn = { version = "2.0.85", features = ["full", "extra-traits"] }
pulldown-cmark = "0.12.2"
itertools = "0.13.0"
clap = "4.5.20"
# Disable ssh support in git2 to avoid depending on openssl (which fails to build if an unsupported version is found).
git2 = { version = "0.19.0", default-features = false }
termcolor = "1.4.1"
cargo_metadata = "0.18.1"
indoc = "2.0.5"
unicase = "2.8.0"
[dev-dependencies]
pretty_assertions = "1.4.1"
[features]
fatal-warnings = []
[lints.clippy]
all = { level = "warn", priority = -2 }
pedantic = { level = "warn", priority = -2 }
correctness = { level = "deny", priority = -1 }
enum-variant-names = "allow"
if-not-else = "allow"
inline-always = "allow"
match-bool = "allow"
match-same-arms = "allow"
missing-errors-doc = "allow"
module-name-repetitions = "allow"
needless-raw-string-hashes = "allow"
new-without-default = "allow"
non-ascii-literal = "allow"
partialeq-ne-impl = "allow"
similar-names = "allow"
single-match-else = "allow"
struct-excessive-bools = "allow"
use-self = "allow"