mirror of
https://github.com/robertwayne/axum-htmx
synced 2024-11-23 20:02:50 +01:00
Update Cargo.toml meta information
This commit is contained in:
parent
bab74e0d38
commit
4171343468
1 changed files with 6 additions and 6 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -2,27 +2,27 @@
|
|||
name = "axum-htmx"
|
||||
authors = ["Rob Wagner <rob@sombia.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "A set of htmx extractors and request guards for axum."
|
||||
description = "A set of htmx extractors, responders, and request guards for axum."
|
||||
repository = "https://github.com/robertwayne/axum-htmx"
|
||||
categories = ["web-programming"]
|
||||
keywords = ["axum", "htmx"]
|
||||
readme = "README.md"
|
||||
version = "0.3.1"
|
||||
version = "0.4.0"
|
||||
edition = "2021"
|
||||
|
||||
[features]
|
||||
default = [ ]
|
||||
default = []
|
||||
guards = ["tower", "futures-core", "pin-project-lite"]
|
||||
serde = [ "dep:serde", "dep:serde_json" ]
|
||||
serde = ["dep:serde", "dep:serde_json"]
|
||||
|
||||
[dependencies]
|
||||
axum = { git = "https://github.com/tokio-rs/axum", branch = "main", default-features = false }
|
||||
|
||||
# Optional dependencies
|
||||
# Optional dependencies required for the `guards` feature.
|
||||
tower = { version = "0.4", default-features = false, optional = true }
|
||||
futures-core = { version = "0.3", optional = true }
|
||||
pin-project-lite = { version = "0.2", optional = true }
|
||||
|
||||
# Optional dependencies required for the `serde` feature.
|
||||
serde = { version = "1.0", features = ["derive"], optional = true }
|
||||
serde_json = { version = "1.0", optional = true }
|
||||
|
||||
|
|
Loading…
Reference in a new issue