Merge pull request #81 from dmitris/deps-upd

upgrade deps: tokio and anyhow
pull/82/head
vadorovsky 2 years ago committed by GitHub
commit b00519ff0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@ cargo xtask build-ebpf
``` ```
To perform a release build you can use the `--release` flag. 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 ## Build Userspace

@ -11,13 +11,13 @@ aya-log = "0.1"
clap = { version = "4.1", features = ["derive"] } clap = { version = "4.1", features = ["derive"] }
{% endif -%} {% endif -%}
{{project-name}}-common = { path = "../{{project-name}}-common", features = ["user"] } {{project-name}}-common = { path = "../{{project-name}}-common", features = ["user"] }
anyhow = "1.0.68" anyhow = "1"
env_logger = "0.10" env_logger = "0.10"
{%- if program_type == "uprobe" %} {%- if program_type == "uprobe" %}
libc = "0.2" libc = "0.2"
{%- endif %} {%- endif %}
log = "0.4" 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]] [[bin]]
name = "{{project-name}}" name = "{{project-name}}"

Loading…
Cancel
Save