[package]
edition = "2024"
rust-version = "1.91"
name = "phlow"
version = "3.0.0"
authors = ["feenk gmbh <contact@feenk.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An engine for scripting reactive browsers in Rust by adding custom views to structures"
homepage = "https://github.com/feenkcom/phlow-rs"
documentation = "https://docs.rs/phlow"
readme = "README.md"
keywords = [
"annotations",
"reflection",
"proc-macro",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/feenkcom/phlow-rs"
resolver = "2"
[features]
default = []
object-id = ["dep:unique_id"]
[lib]
name = "phlow"
path = "src/lib.rs"
[[example]]
name = "info_view"
path = "examples/info_view.rs"
[[example]]
name = "list_view"
path = "examples/list_view.rs"
[[example]]
name = "text_view"
path = "examples/text_view.rs"
[[test]]
name = "extensions"
path = "tests/extensions.rs"
[[test]]
name = "to_string"
path = "tests/to_string.rs"
[[test]]
name = "try_to_clone"
path = "tests/try_to_clone.rs"
[[test]]
name = "try_to_string"
path = "tests/try_to_string.rs"
[dependencies.annotate]
version = "1.2"
[dependencies.ctor]
version = "0.6"
[dependencies.phlow-derive]
version = "3.0.0"
[dependencies.unique_id]
version = "0.1"
optional = true
[dev-dependencies.phlow-derive]
version = "3.0.0"
[build-dependencies.annotate-build]
version = "1.2"
[build-dependencies.phlow-build]
version = "3.0.0"