1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//!
//! The zkEVM LLVM builder lock file.
//!

use std::fs::File;
use std::io::Read;
use std::path::PathBuf;

use serde::Deserialize;

///
/// The lock file data.
///
/// This file describes the exact reference of the LLVM framework.
///
#[derive(Debug, Deserialize)]
pub struct Lock {
    /// The LLVM repository URL.
    pub url: String,
    /// The LLVM repository branch.
    pub branch: String,
}

impl TryFrom<&PathBuf> for Lock {
    type Error = anyhow::Error;

    fn try_from(path: &PathBuf) -> Result<Self, Self::Error> {
        let mut config_str = String::new();
        let mut config_file = File::open(path)?;
        config_file.read_to_string(&mut config_str)?;
        Ok(toml::from_str(&config_str)?)
    }
}