Skip to content

Commit 4d05de0

Browse files
committed
publishing async_tools
1 parent d773a55 commit 4d05de0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

module/core/async_tools/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ features = [ "full" ]
2424
all-features = false
2525

2626
[features]
27-
default = [ "enabled", "async_tools", "async_try_from" ]
27+
default = [ "enabled", "async_from", "async_try_from" ]
2828
full = [ "default" ]
2929
enabled = []
30-
async_tools = []
31-
async_try_from = []
30+
async_from = [ "async_from/async_from" ]
31+
async_try_from = [ "async_from/async_try_from" ]
3232

3333
[dependencies]
3434
async-trait = { workspace = true }
35+
async_from = { workspace = true }
3536

3637
[dev-dependencies]
3738
# test_tools = { workspace = true }

module/core/async_tools/tests/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ use async_tools as the_module;
66
// use test_tools::exposed::*;
77

88
#[ cfg( feature = "enabled" ) ]
9-
#[ path = "../../../../../module/core/async_from/tests/inc/mod.rs" ]
9+
#[ path = "../../../../module/core/async_from/tests/inc/mod.rs" ]
1010
mod inc;

0 commit comments

Comments
 (0)