encoderfile 0.4.0-rc.1

Distribute and run transformer encoders with a single file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Manifest protobufs

tonic::include_proto!("encoderfile.manifest");

impl Artifact {
    pub fn new(offset: u64, length: u64, sha256: [u8; 32]) -> Artifact {
        Artifact {
            offset,
            length,
            sha256: sha256.to_vec(),
        }
    }
}