halyard_server 0.1.0

RPC for the Halyard web framework.
halyard
=======

halyard is a fork of the Leptos web framework (https://github.com/leptos-rs/leptos),
forked on 2026-09-22 from upstream commit c94f4aefd ("chore: publish patch version",
the commit that published leptos 0.8.20 / leptos_router 0.8.15 / leptos_meta 0.8.6 /
leptos_axum 0.8.10 / tachys 0.2.18 / reactive_graph 0.2.14 / server_fn 0.8.13).

Leptos is Copyright (c) 2022 Greg Johnston and is licensed under the MIT License.
The original license text is retained verbatim in the LICENSE file at the root of this
repository, and all original copyright and license notices in the source are retained.
The crates in this repository were renamed (`leptos` -> `halyard`, `leptos_*` -> `halyard_*`,
`tachys` -> `halyard_tachys`, etc.) so that they cannot collide with the upstream
crates on crates.io; the directory names were kept to ease merging from upstream.

Changes made in this fork are also licensed under the MIT License.

Third-party code vendored into this repository
----------------------------------------------

third_party/rstml — a copy of rstml 0.12.1 (https://github.com/rs-tml/rstml),
    Copyright (c) the rstml authors, licensed under the MIT License. Only the
    Cargo manifest was changed (package renamed to `halyard_rstml`, dependency on the
    vendored `halyard_syn_derive`); see third_party/rstml/Cargo.toml.upstream.

third_party/syn_derive — a copy of syn_derive 0.2.0 (https://github.com/Kyuuhachi/syn_derive),
    Copyright (c) Kyuuhachi, licensed under MIT OR Apache-2.0. The package was renamed to
    `halyard_syn_derive` and its dependency on the unmaintained `proc-macro-error2` crate was
    replaced by `halyard_macro_diagnostics`; see third_party/syn_derive/src/lib.rs and
    third_party/syn_derive/Cargo.toml.upstream.