[package]
edition = "2024"
rust-version = "1.92"
name = "dioxus-field"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A form-library-agnostic field convention for Dioxus"
homepage = "https://github.com/sagikazarmark/dioxus-field"
readme = "README.md"
keywords = [
"dioxus",
"field",
"binding",
"headless",
]
categories = [
"web-programming",
"gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sagikazarmark/dioxus-field"
[package.metadata.release]
sign-commit = true
sign-tag = true
tag-message = "Release {{version}}"
tag-prefix = ""
[lib]
name = "dioxus_field"
path = "src/lib.rs"
[[example]]
name = "conformance"
path = "examples/conformance.rs"
[[example]]
name = "field"
path = "examples/field.rs"
[[test]]
name = "binding"
path = "tests/binding.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "context"
path = "tests/context.rs"
[[test]]
name = "meta"
path = "tests/meta.rs"
[[test]]
name = "parts"
path = "tests/parts.rs"
[dependencies.dioxus]
version = "0.7.10"
features = [
"hooks",
"html",
"macro",
"signals",
]
default-features = false
[dependencies.dioxus-core]
version = "0.7.10"
[dependencies.dioxus-hooks]
version = "0.7.10"
[dependencies.dioxus-signals]
version = "0.7.10"
[dev-dependencies.dioxus-ssr]
version = "0.7.10"
[lints.clippy]
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"