diff options
Diffstat (limited to 'clients')
-rw-r--r-- | clients/www/package.json | 3 | ||||
-rw-r--r-- | clients/www/src-tauri/Cargo.toml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/clients/www/package.json b/clients/www/package.json index a45dfb6..7ef49c3 100644 --- a/clients/www/package.json +++ b/clients/www/package.json @@ -13,6 +13,9 @@ "lint": "prettier --check . && eslint .", "format": "prettier --write ." }, + "dependencies": { + "zora-rs": "workspace:*" + }, "devDependencies": { "@skeletonlabs/skeleton": "2.9.0", "@skeletonlabs/tw-plugin": "0.3.1", diff --git a/clients/www/src-tauri/Cargo.toml b/clients/www/src-tauri/Cargo.toml index 5f6ddab..bdb35e7 100644 --- a/clients/www/src-tauri/Cargo.toml +++ b/clients/www/src-tauri/Cargo.toml @@ -20,6 +20,7 @@ serde = { version = "1.0", features = ["derive"] } tauri = { version = "1.6.1", features = [] } specta = "1.0.5" tauri-specta = { version = "1.0.2", features = ["javascript", "typescript"] } +zora-rs = { path = "../../../libs/zora-rs" } [features] # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled. |