You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-sequoia-sq/0001-build-remove-automated...

38 lines
954 B

From 5daffba8dd7b00739507c74b5ce28d18597e7be9 Mon Sep 17 00:00:00 2001
From: Fabio Valentini <decathorpe@gmail.com>
Date: Wed, 16 Mar 2022 12:10:07 +0100
Subject: [PATCH] build: remove automated integration test generation
---
build.rs | 7 -------
1 file changed, 7 deletions(-)
diff --git a/build.rs b/build.rs
index 71399d4..cc4c687 100644
--- a/build.rs
+++ b/build.rs
@@ -1,7 +1,6 @@
use std::env;
use std::fs;
use std::io::{self, Write};
-use std::path::Path;
use clap::Shell;
mod sq_cli {
@@ -11,12 +10,6 @@ mod sq_cli {
fn main() {
println!("cargo:rerun-if-changed=build.rs");
- // XXX: Revisit once
- // https://github.com/rust-lang/rust/issues/44732 is stabilized.
-
- subplot_build::codegen(Path::new("sq-subplot.md"))
- .expect("failed to generate code with Subplot");
-
let mut sq = sq_cli::configure(
clap::App::new("sq").set_term_width(80),
cfg!(feature = "autocrypt"),
--
2.35.1