diff --git a/Cargo.lock b/Cargo.lock index 3f860ad..4698a12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,14 +15,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] -name = "itoa" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" - -[[package]] -name = "libresplit-converter" -version = "0.1.2" +name = "converter" +version = "0.1.3" dependencies = [ "serde", "serde_json", @@ -30,6 +24,12 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + [[package]] name = "memchr" version = "2.7.6" diff --git a/Cargo.toml b/Cargo.toml index 1e6cff4..85bb347 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "libresplit-converter" +name = "converter" license = "GPL-3.0-or-later" authors = [ "Jack Tench", "wins1ey " ] -repository = "https://github.com/LibreSplit/LibreSplit-converter" +repository = "https://github.com/LibreSplit/converter" version = "0.1.3" edition = "2024" diff --git a/README.md b/README.md index bc33e90..c7df06e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# LibreSplit-converter +# converter A WASM library for converting [LiveSplit](https://livesplit.org) `.lss` files into the [LibreSplit](https://libresplit.org) `.json` format. @@ -6,7 +6,7 @@ An online converter using this library is available at [libresplit.org/converter ## Install ```bash -npm i @libresplit/libresplit-converter +npm i @libresplit/converter ``` ## Build @@ -20,8 +20,8 @@ npm i @libresplit/libresplit-converter ### Building ```sh -git clone https://github.com/LibreSplit/LibreSplit-converter -cd LibreSplit-converter +git clone https://github.com/LibreSplit/converter +cd converter wasm-pack build --scope libresplit --target web --release ``` @@ -29,4 +29,4 @@ This outputs a compiled WASM package under `pkg/`. --- -Published as an npm package under [`@libresplit/libresplit-converter`](https://npmjs.com/package/@libresplit/libresplit-converter). +Published as an npm package under [`@libresplit/converter`](https://npmjs.com/package/@libresplit/converter).