-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
150 additions
and
99 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
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,48 +1,6 @@ | ||
[package] | ||
name = "respo" | ||
version = "0.0.12-a4" | ||
edition = "2021" | ||
description = "a tiny virtual DOM library migrated from ClojureScript" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/Respo/respo.rs" | ||
homepage = "http://respo-mvc.org" | ||
documentation = "https://docs.rs/crate/respo/" | ||
readme = "README.md" | ||
[workspace] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
js-sys = "0.3.57" | ||
wasm-bindgen = "0.2.80" | ||
console_error_panic_hook = "0.1.7" | ||
lazy_static = "1.4.0" | ||
serde = { version = "1.0.137", features = [ "derive" ] } | ||
serde_json = "1.0.81" | ||
uuid = { version = "1.1.1", features = [ "v4", "js" ] } | ||
cirru_parser = "0.1.22" | ||
rust-hsluv = "0.1.4" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies.web-sys] | ||
version = "0.3.57" | ||
features = [ | ||
"console", | ||
'Document', | ||
"HtmlHeadElement", | ||
'Element', | ||
'Window', | ||
"HtmlElement", | ||
"HtmlInputElement", | ||
"MouseEvent", | ||
"KeyboardEvent", | ||
"InputEvent", | ||
"Node", | ||
"NodeList", | ||
"Element", | ||
"HtmlCollection", | ||
"CssStyleDeclaration", | ||
"FocusEvent", | ||
"HtmlLabelElement", | ||
members = [ | ||
"respo", | ||
"demo_respo", | ||
] |
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,45 @@ | ||
[package] | ||
name = "demo_respo" | ||
version = "0.0.1" | ||
edition = "2021" | ||
description = "Demo app for Respo" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/Respo/respo.rs" | ||
homepage = "http://respo-mvc.org" | ||
documentation = "https://docs.rs/crate/respo/" | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
respo = { path = "../respo/" } | ||
js-sys = "0.3.57" | ||
wasm-bindgen = "0.2.80" | ||
console_error_panic_hook = "0.1.7" | ||
serde = { version = "1.0.137", features = [ "derive" ] } | ||
uuid = { version = "1.1.1", features = [ "v4", "js" ] } | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies.web-sys] | ||
version = "0.3.57" | ||
features = [ | ||
"console", | ||
'Document', | ||
"HtmlHeadElement", | ||
'Element', | ||
'Window', | ||
"HtmlElement", | ||
"HtmlInputElement", | ||
"MouseEvent", | ||
"KeyboardEvent", | ||
"InputEvent", | ||
"Node", | ||
"NodeList", | ||
"Element", | ||
"HtmlCollection", | ||
"CssStyleDeclaration", | ||
"FocusEvent", | ||
"HtmlLabelElement", | ||
] |
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
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
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,5 @@ | ||
//! demo app for Respo | ||
mod app; | ||
|
||
pub use app::load_demo_app; |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[package] | ||
name = "respo" | ||
version = "0.0.12-a5" | ||
edition = "2021" | ||
description = "a tiny virtual DOM library migrated from ClojureScript" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/Respo/respo.rs" | ||
homepage = "http://respo-mvc.org" | ||
documentation = "https://docs.rs/crate/respo/" | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
js-sys = "0.3.57" | ||
wasm-bindgen = "0.2.80" | ||
lazy_static = "1.4.0" | ||
serde = { version = "1.0.137", features = [ "derive" ] } | ||
serde_json = "1.0.81" | ||
cirru_parser = "0.1.22" | ||
rust-hsluv = "0.1.4" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies.web-sys] | ||
version = "0.3.57" | ||
features = [ | ||
"console", | ||
'Document', | ||
"HtmlHeadElement", | ||
'Element', | ||
'Window', | ||
"HtmlElement", | ||
"HtmlInputElement", | ||
"MouseEvent", | ||
"KeyboardEvent", | ||
"InputEvent", | ||
"Node", | ||
"NodeList", | ||
"Element", | ||
"HtmlCollection", | ||
"CssStyleDeclaration", | ||
"FocusEvent", | ||
"HtmlLabelElement", | ||
] |
File renamed without changes.
Oops, something went wrong.