Skip to content

Commit 37d0f1c

Browse files
committed
chore(deps): upgrade deps
1 parent a7708fa commit 37d0f1c

10 files changed

Lines changed: 99 additions & 96 deletions

File tree

Cargo.lock

Lines changed: 80 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
]
1111

1212
[workspace.dependencies]
13-
hakanai-lib = { path = "lib", version = "3.0.1" }
13+
hakanai-lib = { path = "lib", version = "3.0.2" }
1414

1515
[profile.release]
1616
opt-level = "z"

cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "hakanai"
5-
version = "3.0.1"
5+
version = "3.0.2"
66
edition = "2024"
77
license = "Apache-2.0"
88
description = "CLI client for Hakanai, a secure secret sharing service."
@@ -20,14 +20,14 @@ colored = "3.1.1"
2020
hakanai-lib = { workspace = true, features = ["testing"] }
2121
humantime = "2.3.0"
2222
indicatif = "0.18.4"
23-
ipnet = { version = "2.11.0", features = ["serde"] }
23+
ipnet = { version = "2.12.0", features = ["serde"] }
2424
qrcode = "0.14"
2525
reqwest = { version = "0.13.2", features = ["json"] }
2626
rpassword = "7.4.0"
27-
tokio = { version = "1.49.0", features = ["full"] }
27+
tokio = { version = "1.50.0", features = ["full"] }
2828
url = "2.5.8"
2929
zeroize = "1.8.2"
30-
zip = "8.1.0"
30+
zip = "8.2.0"
3131

3232
[dev-dependencies]
3333
tempfile = "3.26.0"

helm/hakanai/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: hakanai
33
description: A minimalist one-time secret sharing service implementing zero-knowledge principles
44
type: application
5-
version: 0.15.1
6-
appVersion: "v3.0.1"
5+
version: 0.15.2
6+
appVersion: "v3.0.2"
77
keywords:
88
- secret-sharing
99
- zero-knowledge

lib/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "hakanai-lib"
5-
version = "3.0.1"
5+
version = "3.0.2"
66
edition = "2024"
77
license = "Apache-2.0"
88
description = "Client library for Hakanai, a secure secret sharing service."
@@ -19,13 +19,13 @@ async-stream = { version = "0.3.6", optional = true }
1919
async-trait = "0.1.89"
2020
base64 = "0.22.1"
2121
bytes = { version = "1.11.1", optional = true }
22-
ipnet = { version = "2.11.0", features = ["serde"] }
22+
ipnet = { version = "2.12.0", features = ["serde"] }
2323
rand = "0.10.0"
2424
reqwest = { version = "0.13.2", optional = true, features = ["json", "stream"] }
2525
rmp-serde = "1.3.1"
2626
serde = { version = "1.0.228", features = ["derive"] }
2727
serde_json = { version = "1.0.149", optional = true }
28-
serde_with = "3.16.1"
28+
serde_with = "3.17.0"
2929
sha2 = "0.10.9"
3030
thiserror = "2.0.18"
3131
ulid = { version = "1.2.1", features = ["serde"] }
@@ -35,7 +35,7 @@ zeroize = { version = "1.8.2", optional = true }
3535

3636
[dev-dependencies]
3737
mockito = "1.7.2"
38-
tokio = { version = "1.49.0", features = ["rt-multi-thread", "macros"] }
38+
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros"] }
3939

4040
[features]
4141
default = ["reqwest", "serde_json", "url", "bytes", "async-stream", "zeroize"]

server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "hakanai-server"
5-
version = "3.0.1"
5+
version = "3.0.2"
66
edition = "2024"
77
license = "Apache-2.0"
88
description = "Server for Hakanai, a secure secret sharing service."
@@ -22,7 +22,7 @@ clap = { version = "4.5.60", features = ["derive", "env"] }
2222
futures-util = "0.3"
2323
hakanai-lib = { workspace = true, features = ["minimal"] }
2424
humantime = "2.3.0"
25-
ipnet = "2.11.0"
25+
ipnet = "2.12.0"
2626
opentelemetry = "0.31.0"
2727
opentelemetry-appender-tracing = "0.31.1"
2828
opentelemetry-instrumentation-actix-web = { version = "0.23.0", features = ["metrics"] }
@@ -36,7 +36,7 @@ serde = { version = "1.0.228", features = ["derive"] }
3636
serde_json = "1.0.149"
3737
sha2 = "0.10.9"
3838
thiserror = "2.0.18"
39-
tokio = { version = "1.49.0", features = ["full"] }
39+
tokio = { version = "1.50.0", features = ["full"] }
4040
tracing = "0.1.44"
4141
tracing-actix-web = "0.7.21"
4242
tracing-opentelemetry = "0.32.1"

typescript/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"node": ">=16.0.0"
5151
},
5252
"devDependencies": {
53-
"@types/node": "^25.0.8",
53+
"@types/node": "^25.3.3",
5454
"typescript": "^5.9.3"
5555
},
5656
"peerDependencies": {

typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"devDependencies": {
1818
"@rollup/plugin-typescript": "^12.3.0",
1919
"@rollup/plugin-node-resolve": "^16.0.3",
20-
"rollup": "^4.57.1",
20+
"rollup": "^4.59.0",
2121
"tslib": "^2.8.1",
2222
"typescript": "^5.9.3",
2323
"@types/jest": "^30.0.0",

wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "hakanai-wasm"
5-
version = "3.0.1"
5+
version = "3.0.2"
66
edition = "2024"
77
license = "Apache-2.0"
88
description = "WASM module for Hakanai QR code generation"

workspace.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
version = "3.0.1";
3-
cargoHash = "sha256-Kn06RXQG73N3I7m9qPQkRLjY9koKkiejZ8LzGJ/fP7A=";
2+
version = "3.0.2";
3+
cargoHash = "sha256-SzE7P+4445luANj9C1YSP4Wam9DXV5//8jsIou4NnSE=";
44
}

0 commit comments

Comments
 (0)