57 lines
1.7 KiB
Diff
57 lines
1.7 KiB
Diff
|
|
From 6e62adfa80c33d9b1fc4445487cc15e721db07bc Mon Sep 17 00:00:00 2001
|
||
|
|
From: Yuhang Wei <weiyuhang3@huawei.com>
|
||
|
|
Date: Wed, 10 Jan 2024 15:53:26 +0800
|
||
|
|
Subject: [PATCH] build(rust os-agent): remove useless dependency
|
||
|
|
|
||
|
|
Signed-off-by: Yuhang Wei <weiyuhang3@huawei.com>
|
||
|
|
---
|
||
|
|
KubeOS-Rust/Cargo.lock | 11 -----------
|
||
|
|
KubeOS-Rust/manager/Cargo.toml | 2 +-
|
||
|
|
2 files changed, 1 insertion(+), 12 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/KubeOS-Rust/Cargo.lock b/KubeOS-Rust/Cargo.lock
|
||
|
|
index 4b7fc12..2087339 100644
|
||
|
|
--- a/KubeOS-Rust/Cargo.lock
|
||
|
|
+++ b/KubeOS-Rust/Cargo.lock
|
||
|
|
@@ -199,16 +199,6 @@ dependencies = [
|
||
|
|
"serde_json",
|
||
|
|
]
|
||
|
|
|
||
|
|
-[[package]]
|
||
|
|
-name = "colored"
|
||
|
|
-version = "2.1.0"
|
||
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
-checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
|
||
|
|
-dependencies = [
|
||
|
|
- "lazy_static",
|
||
|
|
- "windows-sys",
|
||
|
|
-]
|
||
|
|
-
|
||
|
|
[[package]]
|
||
|
|
name = "core-foundation"
|
||
|
|
version = "0.9.3"
|
||
|
|
@@ -1209,7 +1199,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "80f9fece9bd97ab74339fe19f4bcaf52b76dcc18e5364c7977c1838f76b38de9"
|
||
|
|
dependencies = [
|
||
|
|
"assert-json-diff",
|
||
|
|
- "colored",
|
||
|
|
"httparse",
|
||
|
|
"lazy_static",
|
||
|
|
"log",
|
||
|
|
diff --git a/KubeOS-Rust/manager/Cargo.toml b/KubeOS-Rust/manager/Cargo.toml
|
||
|
|
index 40672cc..9431fba 100644
|
||
|
|
--- a/KubeOS-Rust/manager/Cargo.toml
|
||
|
|
+++ b/KubeOS-Rust/manager/Cargo.toml
|
||
|
|
@@ -8,7 +8,7 @@ version = "0.1.0"
|
||
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
[dev-dependencies]
|
||
|
|
mockall = { version = "=0.11.3" }
|
||
|
|
-mockito = { version = "0.31.1" }
|
||
|
|
+mockito = { version = "0.31.1", default-features = false }
|
||
|
|
predicates = { version = "=2.0.1" }
|
||
|
|
tempfile = { version = "3.6.0" }
|
||
|
|
|
||
|
|
--
|
||
|
|
2.34.1
|
||
|
|
|