From 72d8b4e6bee0ffac79e96dd649a9da2adb86b507 Mon Sep 17 00:00:00 2001 From: name Date: Wed, 27 Sep 2023 11:34:23 +0000 Subject: 2023-09-26 --- rust/wolfree_download_dependencies/Cargo.toml | 20 ++++++++++++++++++++ rust/wolfree_download_dependencies/src/main.rs | 22 ++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 rust/wolfree_download_dependencies/Cargo.toml create mode 100644 rust/wolfree_download_dependencies/src/main.rs (limited to 'rust/wolfree_download_dependencies') diff --git a/rust/wolfree_download_dependencies/Cargo.toml b/rust/wolfree_download_dependencies/Cargo.toml new file mode 100644 index 0000000..a76607d --- /dev/null +++ b/rust/wolfree_download_dependencies/Cargo.toml @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later + +[package] +name = "wolfree_download_dependencies" +version = "2023.8.31" +authors = [ + "See the commit history of the Git repositories.", + "https://git.kiwifarms.net/wolfree", +] +categories = ["development-tools::build-utils"] +edition = "2021" +keywords = ["Wolfree", "Docker", "download", "compile", "dependency"] +license = "AGPL-3.0-or-later" +readme = "README.md" +repository = "https://git.kiwifarms.net/wolfree" +description = "Download and compile dependencies." + +[dependencies] +regex = "1" +walkdir = "2" diff --git a/rust/wolfree_download_dependencies/src/main.rs b/rust/wolfree_download_dependencies/src/main.rs new file mode 100644 index 0000000..9fdc1ab --- /dev/null +++ b/rust/wolfree_download_dependencies/src/main.rs @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ + +//! rust - Can Cargo download and build dependencies without also building the application? - Stack Overflow +//! +//! +//! cargo build --dependencies-only · Issue #2644 · rust-lang/cargo · GitHub +//! + +#![allow(clippy::blanket_clippy_restriction_lints)] +#![allow(clippy::implicit_return)] +#![allow(clippy::question_mark_used)] + +use regex::Regex; +use std::error; +use walkdir::WalkDir; + +/// Entry point of the program. +fn main() -> Result<(), Box> { + let _: Regex = Regex::new("")?; + let _: WalkDir = WalkDir::new(""); + Ok(()) +} -- cgit v1.2.3