-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 924 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "lazy-template"
description = "String template library that send queries to function responder and interpolate the responses"
version = "0.0.0"
repository = "https://github.com/KSXGitHub/lazy-template.git"
documentation = "https://docs.rs/lazy-template"
authors = ["khai96_ <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = [
"template",
"string",
"interpolation",
"lazy",
]
categories = [
"no-std",
"template-engine",
"parsing",
"parser-implementations",
]
edition = "2021"
rust-version = "1.81"
include = [
"/src",
"/tests",
"/Cargo.toml",
"/LICENSE.md",
"/LICENSE.md",
]
[features]
default = ["std"]
std = []
[dependencies]
derive_more = { version = "1.0.0", default-features = false, features = ["display", "error", "into_iterator"] }
pipe-trait = "0.4.0"
split-char-from-str = "0.0.0"
[dev-dependencies]
pretty_assertions = "1.4.1"
semver = "1.0.23"