Remove spurious warnings

This commit is contained in:
Isaac Clayton 2022-07-11 18:36:33 +02:00
parent 41918101ed
commit 031162b473
3 changed files with 2 additions and 4 deletions

View File

@ -5,7 +5,6 @@ fn main() {
let base = Path::new("../../plugins");
println!("cargo:rerun-if-changed={}", base.display());
println!("cargo:warning=Rebuilding precompiled plugins...");
let _ = std::fs::remove_dir_all(base.join("bin"));
let _ =

4
plugins/Cargo.lock generated
View File

@ -92,9 +92,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.81"
version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
dependencies = [
"itoa",
"ryu",

View File

@ -1,6 +1,5 @@
use plugin::prelude::*;
use serde::Deserialize;
use serde_json::json;
use std::fs;
use std::path::PathBuf;