From 715967772fe17872eb3bf36097ea11a3893b4ae0 Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Mon, 13 Feb 2023 15:33:10 +0100 Subject: [PATCH] upgrade deps: tokio and anyhow --- README.md | 2 +- {{project-name}}/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fd58c88..34fd2df 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ cargo xtask build-ebpf ``` To perform a release build you can use the `--release` flag. -You may also change the target architecture with the `--target` flag +You may also change the target architecture with the `--target` flag. ## Build Userspace diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index 9b69d73..cdd7521 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -11,13 +11,13 @@ aya-log = "0.1" clap = { version = "4.1", features = ["derive"] } {% endif -%} {{project-name}}-common = { path = "../{{project-name}}-common", features = ["user"] } -anyhow = "1.0.68" +anyhow = "1" env_logger = "0.10" {%- if program_type == "uprobe" %} libc = "0.2" {%- endif %} log = "0.4" -tokio = { version = "1.24", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } +tokio = { version = "1.25", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } [[bin]] name = "{{project-name}}"