summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAlex Solomes <alex.solomes@softwareag.com>2022-05-25 11:26:25 +0100
committerGitHub <noreply@github.com>2022-05-25 11:26:25 +0100
commit355d5111fc0ba139473da4643df4dd21e708674e (patch)
treeb39c9e3c577450c4c86850f452dea204c3ce0518 /Cargo.lock
parentae88bb1eb08631be648f84521d513f48b40f4631 (diff)
Porting c8y log plugin hotfixes to main (#1163)
* log plugin bugfix, tests, doc and service update - added logic to sort files by file metadata - added tests for c8y log plugin - updated documentation - updated service file to enable service if connect to c8y - log plugin handling failure case and info logs - updating request as failed if there is an issue retrieving the log - empty file error now returns an empty string
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock13
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a6878398..4cf63670 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -426,6 +426,7 @@ dependencies = [
"clap 3.1.18",
"csv",
"easy_reader",
+ "filetime",
"glob",
"inotify",
"mockall 0.11.0",
@@ -962,6 +963,18 @@ dependencies = [
]
[[package]]
+name = "filetime"
+version = "0.2.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c"
+dependencies = [
+ "cfg-if 1.0.0",
+ "libc",
+ "redox_syscall",
+ "winapi",
+]
+
+[[package]]
name = "flate2"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"