Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 64f953cefe | |||
| b067614a68 | |||
| 0c08678d30 | |||
| 7adc13adb1 | |||
| 7f95b2356f | |||
| cb509142eb | |||
| b176f8d813 | |||
| 4cc18ef1dd | |||
| 103f5f9773 |
6 changed files with 7 additions and 7 deletions
|
|
@ -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: |
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,14 +9,14 @@ ignored = ["rand_core"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chacha20poly1305 = { version = "0.11", optional = true }
|
chacha20poly1305 = { version = "0.11", optional = true }
|
||||||
aes-gcm = { version = "0.10", optional = true }
|
aes-gcm = { version = "0.10", 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"
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue