Skip to content

Commit

Permalink
bump version to 0.5.1 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr authored Aug 22, 2023
1 parent 29d2d65 commit 4ca5a04
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 17 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpke-dispatch"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "runtime algorithmic selection for hybrid public key encryption"
license = "MPL-2.0"
Expand Down Expand Up @@ -33,17 +33,17 @@ rand = "0.8.5"
num_enum = "0.7.0"
cfg-if = "1.0.0"
hpke = { version = "0.10.0", default-features = false, features = ["std"] }
zeroize = "1.3"
zeroize = "1.6"

[dependencies.serde_crate]
version = "1.0.145"
version = "1.0.185"
features = ["derive"]
optional = true
package = "serde"

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.83"
getrandom = { version = "0.2.7", features = ["js", "js-sys"] }
wasm-bindgen = "0.2.87"
getrandom = { version = "0.2.10", features = ["js", "js-sys"] }

[lib]
crate-type = ["cdylib", "rlib"]
Expand All @@ -53,6 +53,6 @@ lto = true

[dev-dependencies]
hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
wasm-bindgen-test = "0.3.33"
serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.105"
wasm-bindgen-test = "0.3.37"
12 changes: 3 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hpke",
"description": "hybrid public key encryption",
"version": "0.5.0",
"version": "0.5.1",
"license": "MPL-2.0",
"repository": {
"type": "git",
Expand All @@ -19,15 +19,9 @@
"browser": "./pkg/web/index.mjs",
"main": "./pkg/node/hpke_dispatch.js",
"types": "./pkg/node/hpke_dispatch.d.ts",
"files": [
"pkg/node/*",
"pkg/web/*"
],
"files": ["pkg/node/*", "pkg/web/*"],
"sideEffects": false,
"keywords": [
"hpke",
"encryption"
],
"keywords": ["hpke", "encryption"],
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/chai": "^4.3.1",
Expand Down

0 comments on commit 4ca5a04

Please sign in to comment.