From f5181a822f9402df974f5c66d678779c631295bc Mon Sep 17 00:00:00 2001 From: Michal Rostecki Date: Fri, 29 Apr 2022 10:15:01 +0200 Subject: [PATCH] Update dependencies Update simplelog and tokio Signed-off-by: Michal Rostecki --- {{project-name}}/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index 0ce48ef..6c831d1 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -10,9 +10,9 @@ aya = { git = "https://github.com/aya-rs/aya", branch="main" } anyhow = "1.0.42" {% if program_type == "uprobe" %}libc = "0.2.102"{% endif %} log = "0.4" -simplelog = "0.11" +simplelog = "0.12" structopt = { version = "0.3" } -tokio = { version = "1.5.0", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } +tokio = { version = "1.18", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } [[bin]] name = "{{project-name}}"