diff --git a/Cargo.lock b/Cargo.lock index d514979..1d2a4d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1528,7 +1528,7 @@ dependencies = [ [[package]] name = "kord" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 2df3a1c..296210b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kord" -version = "0.6.0" +version = "0.6.1" edition = "2021" authors = ["Aaron Roney "] license = "MIT" diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md new file mode 100644 index 0000000..ff06475 --- /dev/null +++ b/DEVELOPMENT.md @@ -0,0 +1,26 @@ +# kord development + +## Publish to Cargo + +```bash +$ cargo publish +``` + +## Publish to NPM + +```bash +$ wasm-pack build --features ml_infer --features wasm +``` + +Rename package to `kordweb`, + +```bash +$ wasm-pack publish +``` + +## Publish to wasmer + +```bash +$ cargo wasix build --release --features ml_infer +$ cargo wasix publish +``` \ No newline at end of file