-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
34 lines (28 loc) · 1016 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
[workspace]
default-members = ["hypertext", "hypertext-macros"]
members = ["hypertext", "hypertext-macros"]
resolver = "2"
[workspace.package]
authors = ["Vidhan Bhatt <[email protected]>"]
categories = ["template-engine"]
description = "A blazing fast type-checked HTML macro crate."
edition = "2021"
homepage = "https://github.com/vidhanio/hypertext"
keywords = ["html", "macro"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/vidhanio/hypertext"
version = "0.5.2"
[workspace.dependencies]
hypertext-macros = { version = "0.5.0", path = "./hypertext-macros" }
html-escape = { version = "0.2", default-features = false }
[workspace.lints]
[workspace.lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "forbid"
[workspace.lints.clippy]
cargo = "warn"
nursery = "warn"
pedantic = "warn"