46502097 — Peter John

HEAD -> master, origin/master, origin/HEAD

2 years ago
add integration test

aeeb835c — Peter John

2 years ago
Update README.md

a2a8cc93 — Peter John

2 years ago
update readme

38235508 — Peter John

2 years ago
remove tide dependency

a2f51553 — Peter John

2 years ago
fmt all code

13ca0b5b — Peter John

2 years ago
v0.4.0

4c95b9e6 — Peter John

2 years ago
v0.3.3

7a22303e — Peter John

2 years ago
v0.3.2

f9e46d12 — Peter John

2 years ago
v0.3.1

366ce470 — Peter John

2 years ago
v0.3.0

e3c3a07a — Peter John

2 years ago
fix build tests

cff578e6 — Peter John

2 years ago
v0.2.1

30df4d16 — Peter John

2 years ago
fix tests

0e72dd99 — Peter John

2 years ago
v0.1.1

77cb4fef — Peter John

2 years ago
rename

78e2b8ac — Peter John

2 years ago
rustt-2021

aa10a9d9 — Gal Schlezinger

4 years ago
Use stable Rust (#41)

73c4aa5d — vpzomtrrfrt

4 years ago
impl Render for Cow<'_, str> (#36)

cd4dd39b — vpzomtrrfrt

4 years ago
Implement Render for Vec<T> (#40)

Co-authored-by: Christoph Herzog <chris@theduke.at>
7bffb936 — vpzomtrrfrt

4 years ago
Add Render impls for numeric primitives (#35)

534f9b73 — vpzomtrrfrt

4 years ago
Use Cow for element attribute values (#21)

3f7f7653 — Naitik Shah

4 years ago
support keywords like type/for without resorting to raw (#30)

fixes #13
66cdde18 — Naitik Shah

4 years ago
remove unnecessary pub visibility for tests (#29)

d26982c3 — Naitik Shah

4 years ago
add test showing how to use Option (#28)

Resolves #14
553f893e — Naitik Shah

4 years ago
Prepare for running in stable Rust (#27)

4ccab0c4 — Gal Schlezinger

4 years ago
Set up GH actions for contributions (#26)

02548be3 — Naitik Shah

4 years ago
Eliminate unused brace errors & unused import (#25)

* pull out the first statement to eliminate unused brace errors
* run `cargo fmt` on source
* remove unused import: `raw`

Co-authored-by: Gal Schlezinger <gal@spitfire.co.il>
c35c7af6 — Gal Schlezinger

4 years ago
Update github actions

8e2b3938 — vpzomtrrfrt

5 years ago
Add support for raw identifiers (#19)

915cec79 — Gal Schlezinger

5 years ago
v0.3.1

dca74ba5 — Ash Guy

5 years ago
[Fix] Elements Ordering & Struct Field Visibility (#17)

> * As per #12 prior to this PR you couldn't use generated components across modules as the visibility modifier didn't flow down into each field of the struct. This PR fixes this issue including a test and some documentation about how and why it works.
> * As per #16 prior to this PR when there were more than 2 children descending an element the order was being garbled due to the way it was being folded together.
> 
> Tests included helping illustrate what was going on.
ebaddfdc — Mario Reder

5 years ago
fix: remove space before self closing tag (#11)

resolves https://github.com/Schniz/render.rs/issues/10
c44a431c — Gal Schlezinger

5 years ago
v0.3.0

b03ce49b — Gal Schlezinger

5 years ago
Use `Write` instead of owned strings (#8)

Writing to a mutable buffer is more performant than returning owned strings, and should be the way to go
005fdc1f — Gal Schlezinger

5 years ago
Support dashes in html tags attributes (#7)

* Support empty brackets format

* some touches

* Attributes with dashes

* Tests and docs

* cargo fmt

* Throw custom errors in compile time
00d5abd1 — Gal Schlezinger

5 years ago
v0.2.0

7c790e33 — Gal Schlezinger

5 years ago
Support empty brackets as Fragments (#5)

In React, `<>` is a way to declare `<React.Fragment />`. This is nicer than importing `render::Fragment` all the time. Plus, this PR adds the ability to use paths instead of identifiers, so `<::render::Fragment>...</::render::Fragment>` will work too!
0c772702 — Gal Schlezinger

5 years ago
Add `#[component]` macro (#4)

Creating better ergonomics for the library by deriving some sort of a struct.
71a726cb — Gal Schlezinger

5 years ago
bump version for updating docs

2157b620 — Gal Schlezinger

5 years ago
Add version

79a06e56 — Gal Schlezinger

5 years ago
docs

a6199b76 — Gal Schlezinger

5 years ago
escape strings

45d44a97 — Gal Schlezinger

5 years ago
Move readme test to the lib root

0df6beda — Gal Schlezinger

5 years ago
Better docs

c5dfed46 — Gal Schlezinger

5 years ago
typo

178f9bc4 — Gal Schlezinger

5 years ago
Create LICENSE

90721bf9 — Gal Schlezinger

5 years ago
change readme

f995c834 — Gal Schlezinger

5 years ago
prepare to publish v0.1

f4214dcf — Gal Schlezinger

5 years ago
Add description

377f3108 — Gal Schlezinger

5 years ago
README

6534ef8a — Gal Schlezinger

5 years ago
Refactor proc macro to multiple structs (#1)

6eaa52fb — Gal Schlezinger

5 years ago
Use nightly rust

b61731c7 — Gal Schlezinger

5 years ago
Add CI with GitHub actions

0f2ec10a — Gal Schlezinger

5 years ago
pretty assertions

cc58dd15 — Gal Schlezinger

5 years ago
initial implementation