-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
30 lines (27 loc) · 1.29 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
[package]
name = "version-sync"
version = "0.9.5"
authors = ["Martin Geisler <[email protected]>"]
categories = ["development-tools", "rust-patterns"]
documentation = "https://docs.rs/version-sync/"
edition = "2021"
keywords = ["version"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mgeisler/version-sync"
description = "Crate for ensuring that version numbers in README files and other files are kept in sync with the crate version."
[features]
default = ["markdown_deps_updated", "html_root_url_updated", "contains_regex"]
markdown_deps_updated = ["pulldown-cmark", "semver", "toml"]
html_root_url_updated = ["url", "semver", "syn", "proc-macro2"]
contains_regex = ["regex", "semver"]
[dependencies]
proc-macro2 = { version = "1.0.36", default-features = false, features = ["span-locations"], optional = true }
pulldown-cmark = { version = "0.11", default-features = false, optional = true }
regex = { version = "1.5.4", default-features = false, features = ["std", "unicode"], optional = true }
semver = { version = "1.0.5", optional = true }
syn = { version = "2.0.15", default-features = false, features = ["parsing", "printing", "full"], optional = true }
toml = { version = "0.8.8", optional = true }
url = { version = "2.2.2", optional = true }
[dev-dependencies]
tempfile = "3.3.0"