diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 3e7f339..89080c9 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" [dependencies] anyhow = "1" -clap = { version = "3.1", features = ["derive"] } +clap = { version = "4.0", features = ["derive"] } diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index 0491123..14f7f80 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -9,13 +9,13 @@ aya = { version = ">=0.11", features=["async_tokio"] } aya-log = "0.1" {{project-name}}-common = { path = "../{{project-name}}-common", features=["user"] } anyhow = "1.0.42" -clap = { version = "3.1", features = ["derive"] } -env_logger = "0.9" +clap = { version = "4.0", features = ["derive"] } +env_logger = "0.10" {%- if program_type == "uprobe" %} -libc = "0.2.102" +libc = "0.2" {%- endif %} log = "0.4" -tokio = { version = "1.18", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } +tokio = { version = "1.23", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] } [[bin]] name = "{{project-name}}"