Skip to content

Commit 4ca5a04

Browse files
authored
bump version to 0.5.1 (#44)
1 parent 29d2d65 commit 4ca5a04

File tree

2 files changed

+11
-17
lines changed

2 files changed

+11
-17
lines changed

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hpke-dispatch"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
description = "runtime algorithmic selection for hybrid public key encryption"
66
license = "MPL-2.0"
@@ -33,17 +33,17 @@ rand = "0.8.5"
3333
num_enum = "0.7.0"
3434
cfg-if = "1.0.0"
3535
hpke = { version = "0.10.0", default-features = false, features = ["std"] }
36-
zeroize = "1.3"
36+
zeroize = "1.6"
3737

3838
[dependencies.serde_crate]
39-
version = "1.0.145"
39+
version = "1.0.185"
4040
features = ["derive"]
4141
optional = true
4242
package = "serde"
4343

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

4848
[lib]
4949
crate-type = ["cdylib", "rlib"]
@@ -53,6 +53,6 @@ lto = true
5353

5454
[dev-dependencies]
5555
hex = { version = "0.4.3", features = ["serde"] }
56-
serde = { version = "1.0.145", features = ["derive"] }
57-
serde_json = "1.0.85"
58-
wasm-bindgen-test = "0.3.33"
56+
serde = { version = "1.0.185", features = ["derive"] }
57+
serde_json = "1.0.105"
58+
wasm-bindgen-test = "0.3.37"

package.json

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hpke",
33
"description": "hybrid public key encryption",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"license": "MPL-2.0",
66
"repository": {
77
"type": "git",
@@ -19,15 +19,9 @@
1919
"browser": "./pkg/web/index.mjs",
2020
"main": "./pkg/node/hpke_dispatch.js",
2121
"types": "./pkg/node/hpke_dispatch.d.ts",
22-
"files": [
23-
"pkg/node/*",
24-
"pkg/web/*"
25-
],
22+
"files": ["pkg/node/*", "pkg/web/*"],
2623
"sideEffects": false,
27-
"keywords": [
28-
"hpke",
29-
"encryption"
30-
],
24+
"keywords": ["hpke", "encryption"],
3125
"devDependencies": {
3226
"@tsconfig/node18": "^1.0.1",
3327
"@types/chai": "^4.3.1",

0 commit comments

Comments
 (0)