diff options
author | sinavir <tvix@sinavir.fr> | 2024-07-22T13·09+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-09-26T12·29+0000 |
commit | 9f36632509078d65d1229828237f64e876ffd48f (patch) | |
tree | c06753deaef09fde92c8fdfbcc5203eab9cdcfe4 /tvix/Cargo.lock | |
parent | e4378f01433cc52300ac68d79406e0d5e6a05d50 (diff) |
feat(tvix/store): Add a signing PathInfoService r/8716
- Add a new PathInfoService implementation that wraps transparently around another except that it dynamically signs all the incoming path-infos with the provided signer. - Add a ServiceBuilder for this PathInfoService that provides a SigningPathInfoService with a keyfile signer Change-Id: I845ddfdf01d14c503c796b2b80c720dab98be091 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12032 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: sinavir <tvix@sinavir.fr> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index 96562e9f2f7a..19adc7bfe2a2 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -4696,6 +4696,8 @@ dependencies = [ "clap", "count-write", "data-encoding", + "ed25519", + "ed25519-dalek", "futures", "hyper-util", "lazy_static", |