-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
59 lines (54 loc) · 1.91 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
[package]
name = "cargo-doc2readme"
version = "0.5.0"
description = "cargo subcommand to create a readme file containing the rustdoc comments from your code"
authors = ["Dominic <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins"]
keywords = ["cargo", "subcommand", "readme", "doc2readme", "rustdoc"]
edition = "2021"
rust-version = "1.61.0"
repository = "https://github.com/msrd0/cargo-doc2readme"
license = "Apache-2.0"
readme = "README.md"
include = ["src/**/*", "Cargo.lock", "README.md", "LICENSE"]
autotests = false
[[test]]
name = "tests"
path = "tests/tests.rs"
harness = false
[dependencies]
anyhow = "1.0"
ariadne = "0.5"
base64 = "0.22"
blake3 = "1.5"
cargo_metadata = "0.18"
clap = { version = "4", features = ["derive", "wrap_help"] }
either = "1.13"
itertools = "0.13"
log = "0.4"
memchr = "2.7"
minijinja = { version = "2.4", features = ["builtins", "debug", "key_interning", "urlencode"], default-features = false }
monostate = "0.1"
proc-macro2 = { version = "1.0", features = ["span-locations"], default-features = false }
pulldown-cmark = { version = "0.12.2", default-features = false }
pulldown-cmark-to-cmark = "18.0"
quote = "1.0"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11.2"
simple_logger = { version = "5.0", features = ["colors", "stderr"], default-features = false }
syn = { version = "2.0", features = ["clone-impls", "full", "parsing", "printing"], default-features = false }
url = "2.5"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
pulldown-cmark = { version = "0.12", default-features = false, features = ["simd"] }
[dev-dependencies]
hex = "0.4.3"
lazy-regex = "3.0"
libtest = { version = "0.7", package = "libtest-mimic" }
pretty_assertions = "1.4"
rustversion = "1.0.11"
toml = { version = "0.1", package = "basic-toml" }
[profile.release]
lto = true
opt-level = "z"
strip = true