File: Cargo.toml

package info (click to toggle)
rust-interpolator 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 412 kB
  • sloc: makefile: 2
file content (81 lines) | stat: -rw-r--r-- 1,842 bytes parent folder | download
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
77
78
79
80
81
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "interpolator"
version = "0.5.0"
include = [
    "src/**/*",
    "LICENSE-*",
    "README.md",
    "CHANGELOG.md",
]
description = "runtime format strings, fully compatible with std's macros"
documentation = "https://docs.rs/interpolator"
readme = "README.md"
keywords = [
    "text",
    "interpolation",
    "format",
]
categories = [
    "template-engine",
    "value-formatting",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ModProg/interpolator"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = '## \[Unreleased\]'
replace = """
<!-- ## [Unreleased] -->
## [{{version}}] - {{date}}"""

[[package.metadata.release.pre-release-replacements]]
file = "CHANGELOG.md"
search = '\[unreleased\]: (.*)/(v.*)\.\.\.HEAD'
replace = """
[unreleased]: $1/{{tag_name}}...HEAD
[{{version}}]: $1/$2...{{tag_name}}"""

[dev-dependencies.collection_literals]
version = "1.0.1"

[dev-dependencies.derive_more]
version = "0.99.17"

[dev-dependencies.proptest]
version = "1.1.0"

[dev-dependencies.proptest-derive]
version = "0.4.0"

[dev-dependencies.quote]
version = "1.0.23"

[dev-dependencies.trybuild2]
version = "1.0.0"

[features]
debug = []
iter = []
number = []
pointer = []