-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AUTO : Forward from format_tools_evolving_4 to alpha (#1459)
mod_interface : fix it and implement reuse
- Loading branch information
1 parent
f75fd91
commit 256dd38
Showing
114 changed files
with
1,689 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#[ allow( unused_imports ) ] | ||
use super::*; | ||
|
||
#[ test ] | ||
fn basic() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#[ allow( unused_imports ) ] | ||
use super::*; | ||
|
||
mod basic_test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#[ allow( unused_imports ) ] | ||
use super::*; | ||
|
||
#[ test ] | ||
fn basic() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#[ allow( unused_imports ) ] | ||
use super::*; | ||
|
||
mod basic_test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
--> |
Oops, something went wrong.