diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 89080c9..c4dea5d 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" [dependencies] anyhow = "1" -clap = { version = "4.0", features = ["derive"] } +clap = { version = "4.1", features = ["derive"] } diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index 18be02f..488237e 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -7,17 +7,17 @@ publish = false [dependencies] aya = { version = ">=0.11", features=["async_tokio"] } {% if program_types_with_opts contains program_type -%} -clap = { version = "4.0", features = ["derive"] } +clap = { version = "4.1", features = ["derive"] } {% endif -%} aya-log = "0.1" {{project-name}}-common = { path = "../{{project-name}}-common", features=["user"] } -anyhow = "1.0.42" +anyhow = "1.0.68" env_logger = "0.10" {%- if program_type == "uprobe" %} libc = "0.2" {%- endif %} log = "0.4" -tokio = { version = "1.23", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } +tokio = { version = "1.24", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } [[bin]] name = "{{project-name}}"