-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (45 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
54 lines (45 loc) · 1.3 KB
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
[package]
name = "boilerplate"
version = "1.1.1"
description = "Minimal compile-time Rust template engine"
authors.workspace = true
categories.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
[dependencies]
boilerplate-macros = { version = "0.0.1", path = "crates/boilerplate-macros" }
boilerplate-parser = { version = "0.0.0", path = "crates/boilerplate-parser", optional = true }
[dev-dependencies]
axum = "0.8.7"
[features]
axum = ["boilerplate-macros/axum"]
reload = [
"boilerplate-macros/reload",
"boilerplate-parser/reload",
"dep:boilerplate-parser",
]
[lints]
workspace = true
[workspace]
members = [".", "crates/*"]
[workspace.dependencies]
pretty_assertions = "1.0.0"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
missing-errors-doc = "allow"
missing-panics-doc = "allow"
needless-pass-by-value = "allow"
pedantic = { level = "deny", priority = -1 }
too-many-lines = "allow"
wildcard-imports = "allow"
[workspace.lints.rust]
mismatched-lifetime-syntaxes = "allow"
[workspace.package]
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
categories = ["template-engine", "no-std"]
edition = "2021"
homepage = "https://github.com/casey/boilerplate"
license = "CC0-1.0"
repository = "https://github.com/casey/boilerplate"