-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
28 lines (25 loc) · 816 Bytes
/
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
[package]
name = "cargo-sync-readme"
version = "1.1.0"
license = "BSD-3-Clause"
authors = ["Dimitri Sabadie <[email protected]>"]
description = "Generate a Markdown section in your README based on your Rust documentation"
keywords = ["cargo", "readme", "documentation"]
categories = ["development-tools::cargo-plugins"]
homepage = "https://github.com/phaazon/cargo-sync-readme"
repository = "https://github.com/phaazon/cargo-sync-readme"
documentation = "https://docs.rs/cargo-sync-readme"
readme = "README.md"
edition = "2018"
[features]
default = ["cli"]
cli = ["structopt"]
[[bin]]
name = "cargo-sync-readme"
required-features = ["cli"]
[dependencies]
pulldown-cmark = "0.8"
regex = "1.5"
structopt = { version = "0.3", optional = true }
syn = { version = "1", features= ["extra-traits"]}
toml = "0.5"