chore: release v0.1.0-alpha.12 (#928)

This commit is contained in:
dan
2025-06-19 09:05:34 +00:00
committed by GitHub
parent 9bf3371873
commit f2ff4ba792
21 changed files with 44 additions and 39 deletions

View File

@@ -13,13 +13,18 @@ toml_edit = "0.22.22"
walkdir = "2.5.0"
---
// On some systems the above shebang should look like
// #!/usr/bin/env -S cargo +nightly -Zscript
// This scripts sets the TLSNotary version in all relevant files. Run it with:
// ./set_tlsn_version <version>
use clap::Parser;
use serde_yaml::Value;
use std::fs::{self, read_to_string};
use std::path::Path;
use std::{
fs::{self, read_to_string},
path::Path,
};
use toml_edit::{value, DocumentMut};
use walkdir::WalkDir;