reinhardt-macros 0.1.2

Procedural macros for Reinhardt framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Upstream workaround

Crates that combine `#[viewset]` (impl-form) and `#[url_patterns]`
currently need the crate-level allow below until
[rust-lang/rust#52234](https://github.com/rust-lang/rust/issues/52234)
(`macro_expanded_macro_exports_accessed_by_absolute_paths`)
resolves upstream — the macro expands to `pub use` paths whose
absolute-path lookup triggers a `future-incompat` warning:

```rust,ignore
#![allow(macro_expanded_macro_exports_accessed_by_absolute_paths)]
```

The allow can be removed once the upstream issue closes. Tracked in
[reinhardt-web#4546](https://github.com/kent8192/reinhardt-web/issues/4546).