Skip to content

Commit 256dd38

Browse files
authored
AUTO : Forward from format_tools_evolving_4 to alpha (#1459)
mod_interface : fix it and implement reuse
1 parent f75fd91 commit 256dd38

File tree

114 files changed

+1689
-172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+1689
-172
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,12 @@ version = "~0.7.0"
248248
path = "module/core/impls_index_meta"
249249

250250
[workspace.dependencies.mod_interface]
251-
version = "~0.24.0"
251+
version = "~0.25.0"
252252
path = "module/core/mod_interface"
253253
default-features = false
254254

255255
[workspace.dependencies.mod_interface_meta]
256-
version = "~0.24.0"
256+
version = "~0.25.0"
257257
path = "module/core/mod_interface_meta"
258258
default-features = false
259259

module/blank/mindx12/Cargo.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[package]
2+
name = "mindx12"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = [
6+
"Kostiantyn Wandalen <[email protected]>",
7+
]
8+
license = "MIT"
9+
readme = "Readme.md"
10+
documentation = "https://docs.rs/mindx12"
11+
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/mindx12"
12+
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/mindx12"
13+
description = """
14+
Draw language.
15+
"""
16+
categories = [ "algorithms", "development-tools" ]
17+
keywords = [ "fundamental", "general-purpose" ]
18+
19+
[lints]
20+
workspace = true
21+
22+
[package.metadata.docs.rs]
23+
features = [ "full" ]
24+
all-features = false
25+
26+
[features]
27+
default = [ "enabled" ]
28+
full = [ "enabled" ]
29+
enabled = []
30+
31+
[dependencies]
32+
33+
[dev-dependencies]
34+
test_tools = { workspace = true }

module/blank/mindx12/License

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright Kostiantyn W and Out of the Box Systems (c) 2013-2024
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

module/blank/mindx12/Readme.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!-- {{# generate.module_header{} #}} -->
2+
3+
# Module :: mindx12
4+
[![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)
5+
6+
Draw language.
7+
8+
<!--
9+
### Basic use-case
10+
11+
```rust
12+
use mindx12::*;
13+
14+
fn main()
15+
{
16+
}
17+
```
18+
19+
### To add to your project
20+
21+
```bash
22+
cargo add mindx12
23+
```
24+
25+
### Try out from the repository
26+
27+
``` shell test
28+
git clone https://github.com/Wandalen/wTools
29+
cd wTools
30+
cargo run --example mindx12_trivial
31+
cargo run
32+
```
33+
-->

module/blank/mindx12/src/lib.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
3+
#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
4+
#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
5+
6+
/// Function description.
7+
#[ cfg( feature = "enabled" ) ]
8+
pub fn f1()
9+
{
10+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#[ allow( unused_imports ) ]
2+
use super::*;
3+
4+
#[ test ]
5+
fn basic()
6+
{
7+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#[ allow( unused_imports ) ]
2+
use super::*;
3+
4+
mod basic_test;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
#[ test ]
4+
fn local_smoke_test()
5+
{
6+
::test_tools::smoke_test_for_local_run();
7+
}
8+
9+
10+
#[ test ]
11+
fn published_smoke_test()
12+
{
13+
::test_tools::smoke_test_for_published_run();
14+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
include!( "../../../../module/step/meta/src/module/terminal.rs" );
3+
4+
#[ allow( unused_imports ) ]
5+
use mindx12 as the_module;
6+
#[ allow( unused_imports ) ]
7+
use test_tools::exposed::*;
8+
9+
#[ cfg( feature = "enabled" ) ]
10+
mod inc;

module/blank/mingl/Cargo.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[package]
2+
name = "mingl"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = [
6+
"Kostiantyn Wandalen <[email protected]>",
7+
]
8+
license = "MIT"
9+
readme = "Readme.md"
10+
documentation = "https://docs.rs/mingl"
11+
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/mingl"
12+
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/mingl"
13+
description = """
14+
Draw language.
15+
"""
16+
categories = [ "algorithms", "development-tools" ]
17+
keywords = [ "fundamental", "general-purpose" ]
18+
19+
[lints]
20+
workspace = true
21+
22+
[package.metadata.docs.rs]
23+
features = [ "full" ]
24+
all-features = false
25+
26+
[features]
27+
default = [ "enabled" ]
28+
full = [ "enabled" ]
29+
enabled = []
30+
31+
[dependencies]
32+
33+
[dev-dependencies]
34+
test_tools = { workspace = true }

0 commit comments

Comments
 (0)