-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (53 loc) · 1.55 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
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
[workspace]
members = ["example"]
[package]
name = "htmx"
version = "0.1.0"
edition = "2021"
categories = []
description = "Some server side utilities for htmx"
keywords = []
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/ModProg/htmx"
documentation = "https://docs.rs/htmx"
[features]
# default = ["axum", "actix-web"]
axum = ["dep:axum-core"]
[dependencies]
html = "0.6.1"
htmx-macros = { version = "0.1.0", path = "htmx-macros" }
derive_more = { version = "1.0.0-beta.6", features = ["as_ref", "deref", "deref_mut", "from", "constructor", "display"] }
html-escape = "0.2.13"
forr = "0.2.1"
actix-web = { version = "4.4.0", default-features = false, optional = true }
axum-core = { version = "0.3.4", optional = true }
serde = "1.0.188"
serde_json = "1.0.107"
typed-builder = {git = "https://github.com/ModProg/rust-typed-builder", branch = "mutators"}
chrono = "0.4.31"
ghost = "0.1.17"
[dev-dependencies]
insta = "1.31.0"
serde = { version = "1.0.188", features = ["derive"] }
[profile.dev.package.insta]
opt-level = 3
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.release]
shared-version = true
[[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}}\
"""