From 988db53bd02e7ef649e9fb6940b2c6332dd73d93 Mon Sep 17 00:00:00 2001 From: rUv Date: Thu, 12 Feb 2026 18:03:17 +0000 Subject: [PATCH] chore(ruqu): bump all quantum crates to v2.0.4 Published to crates.io: ruqu-core, ruqu-algorithms, ruqu-exotic, ruqu-wasm Published to npm: @ruvector/ruqu-wasm@2.0.4 Co-Authored-By: claude-flow --- crates/ruqu-algorithms/Cargo.toml | 4 +-- crates/ruqu-core/Cargo.toml | 2 +- crates/ruqu-exotic/Cargo.toml | 4 +-- crates/ruqu-wasm/Cargo.toml | 6 ++-- npm/packages/ruqu-wasm/package.json | 49 +++++++++++++++++++++++++++++ 5 files changed, 57 insertions(+), 8 deletions(-) create mode 100644 npm/packages/ruqu-wasm/package.json diff --git a/crates/ruqu-algorithms/Cargo.toml b/crates/ruqu-algorithms/Cargo.toml index 0adaf51cb..4ca910c9a 100644 --- a/crates/ruqu-algorithms/Cargo.toml +++ b/crates/ruqu-algorithms/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruqu-algorithms" -version = "2.0.3" +version = "2.0.4" edition.workspace = true rust-version.workspace = true license.workspace = true @@ -16,7 +16,7 @@ default = ["std"] std = [] [dependencies] -ruqu-core = { version = "2.0.3", path = "../ruqu-core" } +ruqu-core = { version = "2.0.4", path = "../ruqu-core" } rand = { workspace = true } thiserror = { workspace = true } serde = { workspace = true, optional = true } diff --git a/crates/ruqu-core/Cargo.toml b/crates/ruqu-core/Cargo.toml index 1b3a6e92a..f6e7ee27e 100644 --- a/crates/ruqu-core/Cargo.toml +++ b/crates/ruqu-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruqu-core" -version = "2.0.3" +version = "2.0.4" edition.workspace = true rust-version.workspace = true license.workspace = true diff --git a/crates/ruqu-exotic/Cargo.toml b/crates/ruqu-exotic/Cargo.toml index fe79ad5af..28facb943 100644 --- a/crates/ruqu-exotic/Cargo.toml +++ b/crates/ruqu-exotic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruqu-exotic" -version = "2.0.3" +version = "2.0.4" edition.workspace = true rust-version.workspace = true license.workspace = true @@ -16,7 +16,7 @@ default = ["std"] std = [] [dependencies] -ruqu-core = { version = "2.0.3", path = "../ruqu-core" } +ruqu-core = { version = "2.0.4", path = "../ruqu-core" } rand = { workspace = true } thiserror = { workspace = true } serde = { workspace = true, optional = true } diff --git a/crates/ruqu-wasm/Cargo.toml b/crates/ruqu-wasm/Cargo.toml index 63960a42d..77e0bf292 100644 --- a/crates/ruqu-wasm/Cargo.toml +++ b/crates/ruqu-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ruqu-wasm" -version = "2.0.3" +version = "2.0.4" edition.workspace = true rust-version.workspace = true license.workspace = true @@ -18,8 +18,8 @@ crate-type = ["cdylib", "rlib"] default = [] [dependencies] -ruqu-core = { version = "2.0.3", path = "../ruqu-core" } -ruqu-algorithms = { version = "2.0.3", path = "../ruqu-algorithms" } +ruqu-core = { version = "2.0.4", path = "../ruqu-core" } +ruqu-algorithms = { version = "2.0.4", path = "../ruqu-algorithms" } wasm-bindgen = { workspace = true } js-sys = { workspace = true } serde = { workspace = true } diff --git a/npm/packages/ruqu-wasm/package.json b/npm/packages/ruqu-wasm/package.json new file mode 100644 index 000000000..6b3b70b53 --- /dev/null +++ b/npm/packages/ruqu-wasm/package.json @@ -0,0 +1,49 @@ +{ + "name": "@ruvector/ruqu-wasm", + "version": "2.0.4", + "type": "module", + "description": "Run quantum simulations in the browser - WebAssembly bindings for quantum circuits with 25-qubit support, VQE, Grover, QAOA", + "main": "ruqu_wasm.js", + "types": "ruqu_wasm.d.ts", + "module": "ruqu_wasm.js", + "sideEffects": [ + "./snippets/*" + ], + "keywords": [ + "quantum", + "quantum-computing", + "quantum-simulation", + "quantum-circuit", + "wasm", + "webassembly", + "vqe", + "grover", + "qaoa", + "qubits", + "state-vector", + "rust", + "browser", + "surface-code", + "error-correction" + ], + "author": "RuVector Team", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/ruvnet/ruvector.git", + "directory": "crates/ruqu-wasm" + }, + "homepage": "https://github.com/ruvnet/ruvector/tree/main/crates/ruqu-wasm#readme", + "bugs": { + "url": "https://github.com/ruvnet/ruvector/issues" + }, + "files": [ + "ruqu_wasm_bg.wasm", + "ruqu_wasm.js", + "ruqu_wasm.d.ts", + "README.md" + ], + "publishConfig": { + "access": "public" + } +}