From 92c2d32ffb26670a4ef49d9b2b2be4569bed16da Mon Sep 17 00:00:00 2001 From: Barsik Date: Mon, 13 Nov 2023 14:33:31 +0200 Subject: [PATCH] fix: remove assets for manual testing --- module/willbe_asset/a/Cargo.toml | 33 ----------------------- module/willbe_asset/a/License | 22 --------------- module/willbe_asset/a/Readme.md | 32 ---------------------- module/willbe_asset/a/src/lib.rs | 4 --- module/willbe_asset/a/tests/smoke_test.rs | 14 ---------- 5 files changed, 105 deletions(-) delete mode 100644 module/willbe_asset/a/Cargo.toml delete mode 100644 module/willbe_asset/a/License delete mode 100644 module/willbe_asset/a/Readme.md delete mode 100644 module/willbe_asset/a/src/lib.rs delete mode 100644 module/willbe_asset/a/tests/smoke_test.rs diff --git a/module/willbe_asset/a/Cargo.toml b/module/willbe_asset/a/Cargo.toml deleted file mode 100644 index 7199ba7427..0000000000 --- a/module/willbe_asset/a/Cargo.toml +++ /dev/null @@ -1,33 +0,0 @@ -[package] -name = "willbe_a" -version = "0.1.0" -edition = "2021" -authors = [ - "Kostiantyn Wandalen ", -] -license = "MIT" -readme = "Readme.md" -documentation = "https://docs.rs/template_blank" -repository = "https://github.com/Wandalen/wTools/tree/master/module/core/template_blank" -homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/template_blank" -description = """ -A -""" -categories = [ ] -keywords = [ ] - -[package.metadata.docs.rs] -features = [ "full" ] -all-features = false - -[features] -default = [ "enabled" ] -full = [ "enabled" ] -no_std = [] -use_alloc = [] -enabled = [] - -[dependencies] - -[dev-dependencies] -test_tools = { workspace = true } diff --git a/module/willbe_asset/a/License b/module/willbe_asset/a/License deleted file mode 100644 index 288a7fc5ba..0000000000 --- a/module/willbe_asset/a/License +++ /dev/null @@ -1,22 +0,0 @@ -Copyright Kostiantyn W and Out of the Box Systems (c) 2013-2023 - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. diff --git a/module/willbe_asset/a/Readme.md b/module/willbe_asset/a/Readme.md deleted file mode 100644 index 3694bf4138..0000000000 --- a/module/willbe_asset/a/Readme.md +++ /dev/null @@ -1,32 +0,0 @@ - - -# Module :: math_tools -[![experimental](https://raster.shields.io/static/v1?label=stability&message=experimental&color=orange&logoColor=eee)](https://github.com/emersion/stability-badges#experimental) [![rust-status](https://github.com/Wandalen/wTools/actions/workflows/ModuleTemplateBlankPush.yml/badge.svg)](https://github.com/Wandalen/wTools/actions/workflows/ModuleTemplateBlankPush.yml) [![docs.rs](https://img.shields.io/docsrs/template_blank?color=e3e8f0&logo=docs.rs)](https://docs.rs/template_blank) [![discord](https://img.shields.io/discord/872391416519737405?color=eee&logo=discord&logoColor=eee&label=ask)](https://discord.gg/m3YfbXpUUY) - -To be done. - -## Sample :: trivial - - - -```rust -use template_blank::*; - -fn main() -{ -} -``` - -### To add to your project - -```bash -cargo add template_blank -``` - -### Try out from the repository - -``` shell test -git clone https://github.com/Wandalen/wTools -cd wTools -cargo run example -``` diff --git a/module/willbe_asset/a/src/lib.rs b/module/willbe_asset/a/src/lib.rs deleted file mode 100644 index 57ac45a30e..0000000000 --- a/module/willbe_asset/a/src/lib.rs +++ /dev/null @@ -1,4 +0,0 @@ -pub fn nothing() -> () -{ - () -} diff --git a/module/willbe_asset/a/tests/smoke_test.rs b/module/willbe_asset/a/tests/smoke_test.rs deleted file mode 100644 index 7fd288e61d..0000000000 --- a/module/willbe_asset/a/tests/smoke_test.rs +++ /dev/null @@ -1,14 +0,0 @@ - -// #[ cfg( feature = "default" ) ] -#[ test ] -fn local_smoke_test() -{ - ::test_tools::smoke_test_for_local_run(); -} - -// #[ cfg( feature = "default" ) ] -#[ test ] -fn published_smoke_test() -{ - ::test_tools::smoke_test_for_published_run(); -}