From eedbd0a980e26b1328be0027ea40fe22e61b2a4a Mon Sep 17 00:00:00 2001 From: breayhing <1519981563@qq.com> Date: Thu, 11 Jul 2024 20:54:35 +0800 Subject: [PATCH] update cargo.toml --- dev/Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev/Cargo.toml b/dev/Cargo.toml index 7f3acb51..11b3fcde 100644 --- a/dev/Cargo.toml +++ b/dev/Cargo.toml @@ -188,6 +188,12 @@ bin = [ { name = "try_from_into_sol", path = "../solutions/23_conversions/try_from_into.rs" }, { name = "as_ref_mut", path = "../exercises/23_conversions/as_ref_mut.rs" }, { name = "as_ref_mut_sol", path = "../solutions/23_conversions/as_ref_mut.rs" }, + { name = "async1", path = "../exercises/24_async/async1.rs" }, + { name = "async1_sol", path = "../solutions/24_async/async1.rs" }, + { name = "async2", path = "../exercises/24_async/async2.rs" }, + { name = "async2_sol", path = "../solutions/24_async/async2.rs" }, + { name = "async3", path = "../exercises/24_async/async3.rs" }, + { name = "async3_sol", path = "../solutions/24_async/async3.rs" }, ] [package]