intiface-cli 50.0.0

Command Line Interface frontend for the Buttplug sex toy control library
1
2
3
4
5
6
7
8
9
10
use vergen::{vergen, Config, ShaKind};

fn main() {
  prost_build::compile_protos(&["src/IntifaceGui.proto"], &["src/"]).unwrap();
  let mut config = Config::default();
  // Change the SHA output to the short variant
  *config.git_mut().sha_kind_mut() = ShaKind::Short;
  // Generate the default 'cargo:' instruction output
  vergen(config).unwrap();
}