-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from geofmureithi/develop
v0.2 Release
- Loading branch information
Showing
54 changed files
with
1,149 additions
and
787 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Unit Tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
override: true | ||
- run: cargo test | ||
working-directory: crates/hirola-core |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "hirola" | ||
version = "0.1.7" | ||
version = "0.2.0" | ||
authors = ["Geoffrey Mureithi <[email protected]>"] | ||
description = "A html library for building client side webapps" | ||
description = "Hirola is an un-opinionated web framework that is focused on simplicity and predictability" | ||
repository = "https://github.com/geofmureithi/hirola" | ||
documentation = "https://docs.rs/hirola" | ||
documentation = "https://hirola-docs.vercel.app" | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["wasm", "html", "dom", "web"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
hirola-core = { path = "crates/hirola-core", version = "0.1.7" } | ||
hirola-macros = { path = "crates/hirola-macros", version = "0.1.7" } | ||
hirola-form = { path = "crates/hirola-form", version = "0.1.7", optional = true } | ||
hirola-core = { path = "crates/hirola-core", version = "0.2.0" } | ||
hirola-macros = { path = "crates/hirola-macros", version = "0.2.0" } | ||
hirola-form = { path = "crates/hirola-form", version = "0.2.0", optional = true } | ||
|
||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "hirola-core" | ||
version = "0.1.7" | ||
version = "0.2.0" | ||
authors = ["Geoffrey Mureithi <[email protected]>"] | ||
edition = "2021" | ||
description = "An html library for building client side webapps" | ||
|
@@ -15,8 +15,10 @@ keywords = ["wasm", "html", "dom", "web"] | |
|
||
[dependencies] | ||
chrono = { version = "0.4", features = ["wasmbind"] } | ||
anyhow = "1.0" | ||
thiserror = "1.0" | ||
html-escape = { version = "0.2.7", optional = true } | ||
hirola-macros = { path = "../hirola-macros", version = "0.1.3" } | ||
hirola-macros = { path = "../hirola-macros", version = "0.2.0" } | ||
ref-cast = "1.0" | ||
serde = { version = "1.0", optional = true } | ||
wasm-bindgen = { version = "0.2", optional = true } | ||
|
@@ -25,6 +27,8 @@ matchit = { version = "0.6", optional = true } | |
anymap = { version = "1.0.0-beta.2", optional = true } | ||
wasm-bindgen-futures = { version = "0.4.29", optional = true } | ||
|
||
|
||
|
||
[dependencies.web-sys] | ||
features = [ | ||
"console", | ||
|
@@ -50,6 +54,8 @@ version = "0.3" | |
[dev-dependencies] | ||
criterion = {version = "0.3", features = ["html_reports"]} | ||
wasm-bindgen-test = "0.3" | ||
hirola = { path ="../../" } | ||
web-sys = { version = "0.3", features =["DomTokenList", "Element", "Window"]} | ||
|
||
[features] | ||
default = ["dom", "wasm-bindgen", "web-sys"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.