Skip to content

Commit

Permalink
Merge pull request #81 from dmitris/deps-upd
Browse files Browse the repository at this point in the history
upgrade deps: tokio and anyhow
  • Loading branch information
vadorovsky authored Feb 13, 2023
2 parents 6a605e0 + 7159677 commit b00519f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions {{project-name}}/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}"
Expand Down

0 comments on commit b00519f

Please sign in to comment.