blobnet 0.3.10

Non-volatile, distributed file cache backed by content-addressed storage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::error::Error;

use vergen::EmitBuilder;

fn main() -> Result<(), Box<dyn Error>> {
    // Instruct cargo to re-run this build script for new git commits
    EmitBuilder::builder().all_build().all_git().emit()?;

    // Generate version information for use in `blobnet --version`.
    shadow_rs::new()?;

    Ok(())
}