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
|
@ -2,12 +2,12 @@
|
||||||
name = "axum-htmx"
|
name = "axum-htmx"
|
||||||
authors = ["Rob Wagner <rob@sombia.com>"]
|
authors = ["Rob Wagner <rob@sombia.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
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"
|
repository = "https://github.com/robertwayne/axum-htmx"
|
||||||
categories = ["web-programming"]
|
categories = ["web-programming"]
|
||||||
keywords = ["axum", "htmx"]
|
keywords = ["axum", "htmx"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
version = "0.3.1"
|
version = "0.4.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -18,11 +18,11 @@ serde = [ "dep:serde", "dep:serde_json" ]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = { git = "https://github.com/tokio-rs/axum", branch = "main", default-features = false }
|
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 }
|
tower = { version = "0.4", default-features = false, optional = true }
|
||||||
futures-core = { version = "0.3", optional = true }
|
futures-core = { version = "0.3", optional = true }
|
||||||
pin-project-lite = { version = "0.2", 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 = { version = "1.0", features = ["derive"], optional = true }
|
||||||
serde_json = { version = "1.0", optional = true }
|
serde_json = { version = "1.0", optional = true }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue