Skip to content

Commit 2c27f80

Browse files
committed
wip
1 parent 0e94c03 commit 2c27f80

File tree

113 files changed

+524
-162
lines changed

Some content is hidden

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

113 files changed

+524
-162
lines changed

Cargo.toml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,6 @@ path = "module/alias/wtest"
483483
[workspace.dependencies.test_tools]
484484
version = "~0.16.0"
485485
path = "module/core/test_tools"
486-
features = [ "full" ]
487486

488487
# [workspace.dependencies.test_tools_stable]
489488
# package = "test_tools"
@@ -634,7 +633,6 @@ version = "0.1.83"
634633

635634
[workspace.dependencies.tokio]
636635
version = "1.41.0"
637-
features = []
638636
default-features = false
639637

640638
# Note: anyhow and thiserror are included here ONLY for bootstrap builds
@@ -673,6 +671,18 @@ version = "~0.2"
673671
[workspace.dependencies.rand]
674672
version = "0.8.5"
675673

674+
[workspace.dependencies.rand_chacha]
675+
version = "0.3.1"
676+
677+
[workspace.dependencies.rand_seeder]
678+
version = "0.3.0"
679+
680+
[workspace.dependencies.sealed]
681+
version = "0.5.0"
682+
683+
[workspace.dependencies.rayon]
684+
version = "1.8.0"
685+
676686
[workspace.dependencies.trybuild]
677687
version = "1.0.85"
678688

@@ -754,15 +764,12 @@ version = "0.18.1"
754764

755765
[workspace.dependencies.toml]
756766
version = "0.8.23"
757-
features = [ "preserve_order" ]
758767

759768
[workspace.dependencies.chrono]
760769
version = "0.4.34"
761-
features = [ "serde" ]
762770

763771
[workspace.dependencies.criterion]
764772
version = "0.5.1"
765-
features = [ "html_reports" ]
766773

767774
[workspace.dependencies.workspace_tools]
768775
version = "~0.2.0"

module/alias/cargo_will/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ willbe = { workspace = true }
3636
error_tools = { workspace = true }
3737

3838
# [dev-dependencies]
39-
# test_tools = { workspace = true }
39+
# test_tools = { workspace = true, features = [ "full" ] }
4040
# assert_fs = "1.0"
4141
# serde_yaml = "0.9"
4242
# serde_json = "1.0.114"

module/alias/file_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ enabled = []
3333
[dependencies]
3434

3535
[dev-dependencies]
36-
test_tools = { workspace = true }
36+
test_tools = { workspace = true, features = [ "full" ] }

module/alias/fundamental_data_type/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ enabled = []
4141
derive_tools = { workspace = true }
4242

4343
[dev-dependencies]
44-
test_tools = { workspace = true }
44+
test_tools = { workspace = true, features = [ "full" ] }

module/alias/instance_of/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ implements = { workspace = true }
5959

6060
[dev-dependencies]
6161
# trybuild = { version = "~1.0", features = [ "diff" ] }
62-
test_tools = { workspace = true }
62+
test_tools = { workspace = true, features = [ "full" ] }

module/alias/multilayer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ path = "tests/smoke_test.rs"
5858
mod_interface = { workspace = true }
5959

6060
[dev-dependencies]
61-
test_tools = { workspace = true }
61+
test_tools = { workspace = true, features = [ "full" ] }

module/alias/proc_macro_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ enabled = ["macro_tools/enabled"]
3737
macro_tools = { workspace = true }
3838

3939
[dev-dependencies]
40-
test_tools = { workspace = true }
40+
test_tools = { workspace = true, features = [ "full" ] }
4141

module/alias/proper_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ enabled = []
3333
[dependencies]
3434

3535
[dev-dependencies]
36-
test_tools = { workspace = true }
36+
test_tools = { workspace = true, features = [ "full" ] }

module/alias/unilang_instruction_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ homepage = "https://github.com/Wandalen/wTools/tree/master/module/alias/unilang_
1818
unilang_parser = { path = "../../move/unilang_parser" }
1919

2020
[dev-dependencies]
21-
test_tools = { workspace = true }
21+
test_tools = { workspace = true, features = [ "full" ] }
2222
strs_tools = { workspace = true, features = ["string_parse_request"] }
2323
error_tools = { workspace = true, features = [ "enabled", "error_typed" ] }
2424
iter_tools = { workspace = true, features = [ "enabled" ] }

module/alias/werror/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ error_untyped = [
5252
error_tools = { workspace = true }
5353

5454
[dev-dependencies]
55-
test_tools = { workspace = true }
55+
test_tools = { workspace = true, features = [ "full" ] }

0 commit comments

Comments
 (0)