Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfschoen committed Mar 17, 2023
1 parent 7fd98d2 commit d56e8f6
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion crates/kobold/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ wasm-bindgen = "0.2.84"
wasm-bindgen-futures = "0.4.34"
itoa = "1.0.1"
ryu = "1.0.12"
kobold_macros = "0.5.0"
kobold_macros = { path = "../kobold_macros", version = "0.5.0" }
console_error_panic_hook = "0.1.7"

[dependencies.web-sys]
Expand Down
1 change: 1 addition & 0 deletions crates/kobold/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@
//! trunk serve
//! ```

#![feature(toowned_clone_into)]
#![doc(html_logo_url = "https://maciej.codes/kosz/kobold.png")]

/// The `#[component]` attribute macro that transforms functions into proper components.
Expand Down
2 changes: 1 addition & 1 deletion crates/kobold_qr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "QR code component for Kobold"

[dependencies]
fast_qr = "0.8.4"
kobold = "0.5.0"
kobold = { path = "../kobold", version = "0.5.0" }
wasm-bindgen = "0.2.84"

[dependencies.web-sys]
Expand Down
2 changes: 1 addition & 1 deletion examples/counter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kobold = { path = "../../crates/kobold" }
kobold = { path = "../../crates/kobold", version = "0.5.0" }
2 changes: 1 addition & 1 deletion examples/csv_editor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
compact_str = "0.7.0"
gloo-console = "0.2.3"
kobold = "0.5"
kobold = { path = "../../crates/kobold", version = "0.5.0" }
logos = "0.12.1"
wasm-bindgen-futures = "0.4.34"

Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kobold = { path = "../../crates/kobold" }
kobold = { path = "../../crates/kobold", version = "0.5.0" }
2 changes: 1 addition & 1 deletion examples/interval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"

[dependencies]
gloo-timers = "0.2.4"
kobold = { path = "../../crates/kobold" }
kobold = { path = "../../crates/kobold", version = "0.5.0" }
2 changes: 1 addition & 1 deletion examples/list/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kobold = { path = "../../crates/kobold" }
kobold = { path = "../../crates/kobold", version = "0.5.0" }
4 changes: 2 additions & 2 deletions examples/qrcode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kobold = "0.5"
kobold_qr = "0.5"
kobold = { path = "../../crates/kobold", version = "0.5.0" }
kobold_qr = { path = "../../crates/kobold_qr", version = "0.5.0" }

[dependencies.web-sys]
version = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/stateful/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kobold = { path = "../../crates/kobold" }
kobold = { path = "../../crates/kobold", version = "0.5.0" }
1 change: 1 addition & 0 deletions examples/stateful/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![feature(toowned_clone_into)]
use kobold::prelude::*;

struct State {
Expand Down
2 changes: 1 addition & 1 deletion examples/todomvc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
kobold = "0.5"
kobold = { path = "../../crates/kobold", version = "0.5.0" }
gloo-storage = "0.2.1"

[dependencies.web-sys]
Expand Down

0 comments on commit d56e8f6

Please sign in to comment.