Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/mirror_worker/.dev.vars
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MIRROR_SIGNING_KEY="-----BEGIN PRIVATE KEY-----\nMDQCAQAwCwYJYIZIAWUDBAMRBCKAIEJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJC\nQkJCQkJC\n-----END PRIVATE KEY-----\n"
17 changes: 17 additions & 0 deletions crates/mirror_worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,28 @@ config = { path = "./config", package = "mirror_worker_config" }
console_error_panic_hook.workspace = true
console_log.workspace = true
getrandom.workspace = true
hex.workspace = true
log.workspace = true
ml-dsa.workspace = true
pkcs8.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with.workspace = true
signed_note.workspace = true
tlog_checkpoint.workspace = true
tlog_core.workspace = true
tlog_cosignature.workspace = true
tlog_witness.workspace = true
tower-service.workspace = true
worker = { workspace = true, features = ["http", "axum"] }

[dev-dependencies]
# base64 is used only by the dev-config pin tests; ed25519-dalek only to
# check that a non-ML-DSA-44 MIRROR_SIGNING_KEY is rejected. The shipped
# worker is ML-DSA-44 only.
base64.workspace = true
ed25519-dalek.workspace = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(wasm_bindgen_unstable_test_coverage)',
Expand Down
Loading
Loading