mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-17 17:44:02 -05:00
* fix(ci): Dockerfile * feat(monero-sys): Use our own monero-depends * get cargo-chef working * specify monero submodule in static * Pin monero submodule to dbbccecc89e1121762a4ad6b531638ece82aa0c7 * fix(Dockerfile): Pull from /target/release * make whiny clippy happy --------- Co-authored-by: binarybaron <binarybaron@mail.mail>
9 lines
199 B
Rust
9 lines
199 B
Rust
use anyhow::Result;
|
|
use vergen_git2::{Emitter, Git2Builder};
|
|
|
|
fn main() -> Result<()> {
|
|
let git2 = Git2Builder::all_git()?;
|
|
|
|
Emitter::default().add_instructions(&git2)?.emit()?;
|
|
Ok(())
|
|
}
|