use nix path-info cmd for derivation; console_subscriber

This commit is contained in:
cy 2025-04-18 00:50:11 -04:00
parent 6806b96892
commit b1e59d0a6c
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
8 changed files with 421 additions and 82 deletions

View file

@ -23,6 +23,7 @@ pub struct Uploader<'a> {
path: PathInfo,
s3_client: &'a s3::Client,
bucket: String,
hash: Sha256,
}
impl<'a> Uploader<'a> {
@ -37,6 +38,7 @@ impl<'a> Uploader<'a> {
path,
s3_client,
bucket,
hash: Sha256::new(),
})
}