-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
73 lines (62 loc) · 1.84 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
[package]
name = "cargo-rdme"
description = "Cargo command to create your `README.md` from your crate's documentation"
version = "1.4.9-pre"
authors = ["Diogo Sousa <[email protected]>"]
edition = "2021"
rust-version = "1.78.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]
cargo_metadata = "0.19.1"
clap = "4.5.23"
clap-cargo = "0.14.1"
# 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 }
indoc = "2.0.5"
itertools = "0.13.0"
pulldown-cmark = "0.12.2"
syn = { version = "2.0.91", features = ["full", "extra-traits"] }
termcolor = "1.4.1"
thiserror = "2.0.9"
toml = "0.8.19"
unicase = "2.8.0"
[dev-dependencies]
pretty_assertions = "1.4.1"
[features]
fatal-warnings = []
[lints.clippy]
all = { level = "warn", priority = -2 }
correctness = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -2 }
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"