Compare commits

...
Author SHA1 Message Date
d87ed2e5b8 Update Rust crate aes-gcm to 0.11
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
CI / checks (pull_request) Failing after 54s
2026-08-06 21:03:47 +02:00
b067614a68 Merge pull request 'Update Rust crate thiserror to v2' (#19) from renovate/thiserror-2.x into master
Some checks failed
CI / checks (push) Failing after 7m8s
2026-08-06 20:03:04 +02:00
0c08678d30 Merge pull request 'Update Rust crate ed25519-dalek to v3' (#18) from renovate/ed25519-dalek-3.x into master
Some checks failed
CI / checks (push) Has been cancelled
2026-08-06 20:03:03 +02:00
7adc13adb1 Merge pull request 'Update https://data.forgejo.org/actions/checkout action to v7' (#17) from renovate/https-data.forgejo.org-actions-checkout-7.x into master
Some checks failed
CI / checks (push) Has been cancelled
2026-08-06 20:03:00 +02:00
7f95b2356f Merge pull request 'Update dependency typescript to v7' (#16) from renovate/typescript-7.x into master
Some checks failed
CI / checks (push) Has been cancelled
2026-08-06 20:02:59 +02:00
cb509142eb Update Rust crate thiserror to v2
Some checks failed
renovate/artifacts Artifact file update failure
CI / checks (pull_request) Failing after 2m14s
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 05:02:35 +02:00
b176f8d813 Update Rust crate ed25519-dalek to v3
Some checks failed
renovate/artifacts Artifact file update failure
CI / checks (pull_request) Failing after 5m10s
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 04:02:37 +02:00
4cc18ef1dd Update https://data.forgejo.org/actions/checkout action to v7
Some checks failed
CI / checks (pull_request) Failing after 5m14s
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 04:02:32 +02:00
103f5f9773 Update dependency typescript to v7
Some checks failed
renovate/artifacts Artifact file update failure
CI / checks (pull_request) Failing after 3m1s
renovate/stability-days Updates have met minimum release age requirement
2026-08-06 03:02:50 +02:00
6 changed files with 8 additions and 8 deletions

View file

@ -18,7 +18,7 @@ jobs:
run: nix profile add nixpkgs#nodejs_24 run: nix profile add nixpkgs#nodejs_24
- name: Checkout - name: Checkout
uses: https://data.forgejo.org/actions/checkout@v4 uses: https://data.forgejo.org/actions/checkout@v7
- name: Run checks - name: Run checks
run: | run: |

View file

@ -25,7 +25,7 @@ jobs:
run: nix profile add nixpkgs#nodejs_24 nixpkgs#bun run: nix profile add nixpkgs#nodejs_24 nixpkgs#bun
- name: Check out repo - name: Check out repo
uses: https://data.forgejo.org/actions/checkout@v4 uses: https://data.forgejo.org/actions/checkout@v7
with: with:
fetch-depth: 0 fetch-depth: 0

View file

@ -8,15 +8,15 @@ ignored = ["rand_core"]
[dependencies] [dependencies]
chacha20poly1305 = { version = "0.10", optional = true } chacha20poly1305 = { version = "0.10", optional = true }
aes-gcm = { version = "0.10", optional = true } aes-gcm = { version = "0.11", optional = true }
ed25519-dalek = { version = "2.2", optional = true, features = [ ed25519-dalek = { version = "3.0", optional = true, features = [
"pkcs8", "pkcs8",
"pem", "pem",
] } ] }
hkdf = { version = "0.13", optional = true } hkdf = { version = "0.13", optional = true }
sha2 = { version = "0.11", optional = true } sha2 = { version = "0.11", optional = true }
zeroize = { version = "1.9", features = ["derive"] } zeroize = { version = "1.9", features = ["derive"] }
thiserror = "1" thiserror = "2"
base64 = "0.23" base64 = "0.23"
rand_core = { version = "0.10.1" } rand_core = { version = "0.10.1" }
rand = "0.10.2" rand = "0.10.2"

View file

@ -13,7 +13,7 @@
"mtp": "workspace:*" "mtp": "workspace:*"
}, },
"devDependencies": { "devDependencies": {
"typescript": "^6.0.3", "typescript": "^7.0.0",
"vite": "^8.1.0" "vite": "^8.1.0"
} }
} }

View file

@ -9,5 +9,5 @@ edition = "2024"
mtp-crypto = { version = "0.2.0", path = "../crypto", default-features = false, features = ["chacha20poly1305", "hkdf"] } mtp-crypto = { version = "0.2.0", path = "../crypto", default-features = false, features = ["chacha20poly1305", "hkdf"] }
rand = "0.10.2" rand = "0.10.2"
thiserror = "1" thiserror = "2"
zeroize = "1.9" zeroize = "1.9"

View file

@ -56,7 +56,7 @@
"devDependencies": { "devDependencies": {
"@types/node": "^26.0.1", "@types/node": "^26.0.1",
"jscpd": "4.2.5", "jscpd": "4.2.5",
"typescript": "^6.0.3" "typescript": "^7.0.0"
}, },
"dependencies": { "dependencies": {
"yaml": "^2.8.1" "yaml": "^2.8.1"