Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus
Expand Down Expand Up @@ -153,3 +152,6 @@ dist

# Code editors
.idea/

# OS specific
.DS_Store/
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libpep"
edition = "2021"
version = "0.6.6"
version = "0.6.7"
authors = ["Bernard van Gastel <bvgastel@bitpowder.com>", "Job Doesburg <job@jobdoesburg.nl>"]
homepage = "https://github.com/NOLAI/libpep"
repository = "https://github.com/NOLAI/libpep"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nolai/libpep-wasm",
"version": "0.6.6",
"version": "0.6.7",
"description": "The WebAssembly version of the libpep library",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/wasm/distributed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ impl WASMPEPClient {

/// Restore a PEP client from the given session keys.
#[wasm_bindgen(js_name = restore)]
pub fn wasm_restore(&self, session_keys: &WASMSessionKeyPair) -> Self {
pub fn wasm_restore(session_keys: &WASMSessionKeyPair) -> Self {
Self(PEPClient::restore(
SessionPublicKey(**session_keys.public),
SessionSecretKey(**session_keys.secret),
Expand Down
Loading