Skip to content

Commit

Permalink
AUTO : Forward from format_tools_evolving_4 to alpha (#1459)
Browse files Browse the repository at this point in the history
mod_interface : fix it and implement reuse
  • Loading branch information
wtools-bot authored Sep 10, 2024
1 parent f75fd91 commit 256dd38
Show file tree
Hide file tree
Showing 114 changed files with 1,689 additions and 172 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,12 @@ version = "~0.7.0"
path = "module/core/impls_index_meta"

[workspace.dependencies.mod_interface]
version = "~0.24.0"
version = "~0.25.0"
path = "module/core/mod_interface"
default-features = false

[workspace.dependencies.mod_interface_meta]
version = "~0.24.0"
version = "~0.25.0"
path = "module/core/mod_interface_meta"
default-features = false

Expand Down
34 changes: 34 additions & 0 deletions module/blank/mindx12/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[package]
name = "mindx12"
version = "0.1.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/mindx12"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/mindx12"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/mindx12"
description = """
Draw language.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]

[lints]
workspace = true

[package.metadata.docs.rs]
features = [ "full" ]
all-features = false

[features]
default = [ "enabled" ]
full = [ "enabled" ]
enabled = []

[dependencies]

[dev-dependencies]
test_tools = { workspace = true }
22 changes: 22 additions & 0 deletions module/blank/mindx12/License
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright Kostiantyn W and Out of the Box Systems (c) 2013-2024

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.
33 changes: 33 additions & 0 deletions module/blank/mindx12/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!-- {{# generate.module_header{} #}} -->

# Module :: mindx12
[![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/Modulemindx12Push.yml/badge.svg)](https://github.com/Wandalen/wTools/actions/workflows/Modulemindx12Push.yml) [![docs.rs](https://img.shields.io/docsrs/mindx12?color=e3e8f0&logo=docs.rs)](https://docs.rs/mindx12) [![discord](https://img.shields.io/discord/872391416519737405?color=eee&logo=discord&logoColor=eee&label=ask)](https://discord.gg/m3YfbXpUUY)

Draw language.

<!--
### Basic use-case
```rust
use mindx12::*;
fn main()
{
}
```
### To add to your project
```bash
cargo add mindx12
```
### Try out from the repository
``` shell test
git clone https://github.com/Wandalen/wTools
cd wTools
cargo run --example mindx12_trivial
cargo run
```
-->
10 changes: 10 additions & 0 deletions module/blank/mindx12/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]

/// Function description.
#[ cfg( feature = "enabled" ) ]
pub fn f1()
{
}
7 changes: 7 additions & 0 deletions module/blank/mindx12/tests/inc/basic_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#[ allow( unused_imports ) ]
use super::*;

#[ test ]
fn basic()
{
}
4 changes: 4 additions & 0 deletions module/blank/mindx12/tests/inc/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#[ allow( unused_imports ) ]
use super::*;

mod basic_test;
14 changes: 14 additions & 0 deletions module/blank/mindx12/tests/smoke_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@


#[ test ]
fn local_smoke_test()
{
::test_tools::smoke_test_for_local_run();
}


#[ test ]
fn published_smoke_test()
{
::test_tools::smoke_test_for_published_run();
}
10 changes: 10 additions & 0 deletions module/blank/mindx12/tests/tests.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

include!( "../../../../module/step/meta/src/module/terminal.rs" );

#[ allow( unused_imports ) ]
use mindx12 as the_module;
#[ allow( unused_imports ) ]
use test_tools::exposed::*;

#[ cfg( feature = "enabled" ) ]
mod inc;
34 changes: 34 additions & 0 deletions module/blank/mingl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[package]
name = "mingl"
version = "0.1.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/mingl"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/mingl"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/mingl"
description = """
Draw language.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]

[lints]
workspace = true

[package.metadata.docs.rs]
features = [ "full" ]
all-features = false

[features]
default = [ "enabled" ]
full = [ "enabled" ]
enabled = []

[dependencies]

[dev-dependencies]
test_tools = { workspace = true }
22 changes: 22 additions & 0 deletions module/blank/mingl/License
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright Kostiantyn W and Out of the Box Systems (c) 2013-2024

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.
33 changes: 33 additions & 0 deletions module/blank/mingl/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!-- {{# generate.module_header{} #}} -->

# Module :: draw_lang
[![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/Moduledraw_langPush.yml/badge.svg)](https://github.com/Wandalen/wTools/actions/workflows/Moduledraw_langPush.yml) [![docs.rs](https://img.shields.io/docsrs/draw_lang?color=e3e8f0&logo=docs.rs)](https://docs.rs/draw_lang) [![discord](https://img.shields.io/discord/872391416519737405?color=eee&logo=discord&logoColor=eee&label=ask)](https://discord.gg/m3YfbXpUUY)

Draw language.

<!--
### Basic use-case
```rust
use draw_lang::*;
fn main()
{
}
```
### To add to your project
```bash
cargo add draw_lang
```
### Try out from the repository
``` shell test
git clone https://github.com/Wandalen/wTools
cd wTools
cargo run --example draw_lang_trivial
cargo run
```
-->
10 changes: 10 additions & 0 deletions module/blank/mingl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]

/// Function description.
#[ cfg( feature = "enabled" ) ]
pub fn f1()
{
}
7 changes: 7 additions & 0 deletions module/blank/mingl/tests/inc/basic_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#[ allow( unused_imports ) ]
use super::*;

#[ test ]
fn basic()
{
}
4 changes: 4 additions & 0 deletions module/blank/mingl/tests/inc/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#[ allow( unused_imports ) ]
use super::*;

mod basic_test;
14 changes: 14 additions & 0 deletions module/blank/mingl/tests/smoke_test.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@


#[ test ]
fn local_smoke_test()
{
::test_tools::smoke_test_for_local_run();
}


#[ test ]
fn published_smoke_test()
{
::test_tools::smoke_test_for_published_run();
}
10 changes: 10 additions & 0 deletions module/blank/mingl/tests/tests.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

include!( "../../../../module/step/meta/src/module/terminal.rs" );

#[ allow( unused_imports ) ]
use mingl as the_module;
#[ allow( unused_imports ) ]
use test_tools::exposed::*;

#[ cfg( feature = "enabled" ) ]
mod inc;
34 changes: 34 additions & 0 deletions module/blank/minmetal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[package]
name = "minmetal"
version = "0.1.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/minmetal"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/minmetal"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/minmetal"
description = """
Draw language.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]

[lints]
workspace = true

[package.metadata.docs.rs]
features = [ "full" ]
all-features = false

[features]
default = [ "enabled" ]
full = [ "enabled" ]
enabled = []

[dependencies]

[dev-dependencies]
test_tools = { workspace = true }
22 changes: 22 additions & 0 deletions module/blank/minmetal/License
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright Kostiantyn W and Out of the Box Systems (c) 2013-2024

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.
33 changes: 33 additions & 0 deletions module/blank/minmetal/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!-- {{# generate.module_header{} #}} -->

# Module :: minmetal
[![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/ModuleminmetalPush.yml/badge.svg)](https://github.com/Wandalen/wTools/actions/workflows/ModuleminmetalPush.yml) [![docs.rs](https://img.shields.io/docsrs/minmetal?color=e3e8f0&logo=docs.rs)](https://docs.rs/minmetal) [![discord](https://img.shields.io/discord/872391416519737405?color=eee&logo=discord&logoColor=eee&label=ask)](https://discord.gg/m3YfbXpUUY)

Draw language.

<!--
### Basic use-case
```rust
use minmetal::*;
fn main()
{
}
```
### To add to your project
```bash
cargo add minmetal
```
### Try out from the repository
``` shell test
git clone https://github.com/Wandalen/wTools
cd wTools
cargo run --example minmetal_trivial
cargo run
```
-->
Loading

0 comments on commit 256dd38

Please sign in to comment.