microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9fa0c3ee87af75e07fa974b6005348ae6b9349ff

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

flowey/flowey_hvlite/src/lib.rs

22lines · modepreview

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Flowey pipelines used by the OpenVMM project

// DEVNOTE: this binary crate includes a `lib.rs` so that out-of-tree,
// closed-source flowey pipelines can reuse certain bits of the open-source
// flowey CLI and shared configuration logic (making it easier to have a
// consistent UX across open and closed-source).

#![expect(missing_docs)]

pub mod pipelines;
pub mod pipelines_shared;

pub fn repo_root() -> std::path::PathBuf {
    std::path::Path::new(&env!("CARGO_MANIFEST_DIR"))
        .ancestors()
        .nth(2)
        .unwrap()
        .into()
}