-
Notifications
You must be signed in to change notification settings - Fork 8
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 #72 from uqbar-dao/hf/even-more-edits
more edits
- Loading branch information
Showing
18 changed files
with
291 additions
and
170 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
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ Once you have the template app installed and can see it running on your testing | |
|
||
# Chess Engine | ||
|
||
Chess is a good example for an Kinode application walk-through because: | ||
Chess is a good example for a Kinode application walk-through because: | ||
1. The basic game logic is already readily available. | ||
There are thousands of high-quality chess libraries across many languages that can be imported into a Wasm app that runs on Kinode. | ||
We'll be using [pleco](https://github.com/pleco-rs/Pleco) | ||
|
@@ -157,11 +157,11 @@ lto = true | |
anyhow = "1.0" | ||
base64 = "0.13" | ||
bincode = "1.3.3" | ||
kinode_process_lib = { git = "ssh://[email protected]/uqbar-dao/process_lib.git", tag = "v0.5.4-alpha" } | ||
pleco = "0.5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
url = "*" | ||
kinode_process_lib = { git = "ssh://[email protected]/uqbar-dao/process_lib.git", rev = "a2d3e9e" } | ||
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "efcc759" } | ||
|
||
[lib] | ||
|
@@ -183,7 +183,7 @@ use kinode_process_lib::{ | |
|
||
extern crate base64; | ||
|
||
// Boilerplate: generate the Wasm bindings for an Kinode app | ||
// Boilerplate: generate the Wasm bindings for a Kinode app | ||
wit_bindgen::generate!({ | ||
path: "wit", | ||
world: "process", | ||
|
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.