Compare commits

...

5 Commits

Author SHA1 Message Date
Greg Johnston
61a23b8176 tachys v0.1.9 2025-06-06 14:31:22 -04:00
lcnr
80837037ff remove unnecessary where-clauses (#4023)
they may cause tachys to break with -Znext-solver

(cherry picked from commit f34e3a5bc9)
2025-06-06 14:27:59 -04:00
Greg Johnston
0174637219 v0.7.9 for leptos_macro 2025-04-18 14:18:32 -04:00
David Patrick
09faa6b6fb fixed compilation error on nightly (#1) (#3856)
fixed compilation error in leptos_macro on nightly
2025-04-18 08:37:55 -04:00
Greg Johnston
0944ffedf7 chore(nightly): update proc-macro span file name method name 2025-04-16 08:21:19 -04:00
6 changed files with 6 additions and 12 deletions

2
Cargo.lock generated
View File

@@ -1892,7 +1892,7 @@ dependencies = [
[[package]]
name = "leptos_macro"
version = "0.7.8"
version = "0.7.9"
dependencies = [
"attribute-derive",
"cfg-if",

View File

@@ -1,6 +1,6 @@
[package]
name = "leptos_macro"
version = { workspace = true }
version = "0.7.9"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/leptos-rs/leptos"

View File

@@ -357,7 +357,7 @@ fn normalized_call_site(site: proc_macro::Span) -> Option<String> {
cfg_if::cfg_if! {
if #[cfg(all(debug_assertions, feature = "nightly"))] {
Some(leptos_hot_reload::span_to_stable_id(
site.source_file().path(),
site.file(),
site.start().line()
))
} else {

View File

@@ -1,6 +1,6 @@
[package]
name = "tachys"
version = "0.1.8"
version = "0.1.9"
authors = ["Greg Johnston"]
license = "MIT"
readme = "../README.md"

View File

@@ -561,10 +561,7 @@ mod stable {
fn add_any_attr<NewAttr: Attribute>(
self,
_attr: NewAttr,
) -> Self::Output<NewAttr>
where
Self::Output<NewAttr>: RenderHtml,
{
) -> Self::Output<NewAttr> {
todo!()
}
}

View File

@@ -58,10 +58,7 @@ where
fn add_any_attr<NewAttr: Attribute>(
self,
_attr: NewAttr,
) -> Self::Output<NewAttr>
where
Self::Output<NewAttr>: RenderHtml,
{
) -> Self::Output<NewAttr> {
panic!("AddAnyAttr not supported on ViewTemplate");
}
}