27 lines
717 B
Diff
27 lines
717 B
Diff
From 7c4bfcad52d1e8b2de7c6c2d5bfc1c08b401341f Mon Sep 17 00:00:00 2001
|
|
From: chenjiayi <chenjiayi22@huawei.com>
|
|
Date: Wed, 8 Nov 2023 02:10:37 +0800
|
|
Subject: [PATCH 046/103] fix(device): replenish feature dependency of uuid on
|
|
basic crate
|
|
|
|
uuid is used on trigger_with_uuid method.
|
|
---
|
|
libs/device/Cargo.toml | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/libs/device/Cargo.toml b/libs/device/Cargo.toml
|
|
index 6af6a404..ecb9955c 100644
|
|
--- a/libs/device/Cargo.toml
|
|
+++ b/libs/device/Cargo.toml
|
|
@@ -12,6 +12,7 @@ basic = { path = "../basic", default-features = false, features = [
|
|
"fs",
|
|
"fd",
|
|
"murmurhash2",
|
|
+ "uuid",
|
|
] }
|
|
event = { path = "../event" }
|
|
log = { path = "../log" }
|
|
--
|
|
2.33.0
|
|
|