You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
544 B
TOML
20 lines
544 B
TOML
[package]
|
|
name = "{{project-name}}"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
aya = { git = "https://github.com/aya-rs/aya", branch="main" }
|
|
{{project-name}}-common = { path = "../{{project-name}}-common", features=["user"] }
|
|
anyhow = "1.0.42"
|
|
{% if program_type == "uprobe" %}libc = "0.2.102"{% endif %}
|
|
log = "0.4"
|
|
simplelog = "0.11"
|
|
structopt = { version = "0.3" }
|
|
tokio = { version = "1.5.0", features = ["macros", "rt", "rt-multi-thread", "net", "signal"] }
|
|
|
|
[[bin]]
|
|
name = "{{project-name}}"
|
|
path = "src/main.rs"
|