From dcf738cd46b1ffc25fb4c512f0bad91d3ae89496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alessandro=C2=A0Decina?= Date: Sun, 19 Sep 2021 08:34:28 +0000 Subject: [PATCH] Switch git urls to aya-rs --- {{project-name}}-common/Cargo.toml | 2 +- {{project-name}}-ebpf/Cargo.toml | 2 +- {{project-name}}/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/{{project-name}}-common/Cargo.toml b/{{project-name}}-common/Cargo.toml index 011cf8d..8a55d57 100644 --- a/{{project-name}}-common/Cargo.toml +++ b/{{project-name}}-common/Cargo.toml @@ -8,7 +8,7 @@ default = [] userspace = [ "aya" ] [dependencies] -aya = { git = "https://github.com/alessandrod/aya", branch="main", optional=true } +aya = { git = "https://github.com/aya-rs/aya", branch="main", optional=true } [lib] path = "src/lib.rs" \ No newline at end of file diff --git a/{{project-name}}-ebpf/Cargo.toml b/{{project-name}}-ebpf/Cargo.toml index 43e9f5c..baec21e 100644 --- a/{{project-name}}-ebpf/Cargo.toml +++ b/{{project-name}}-ebpf/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2018" [dependencies] -aya-bpf = { git = "http://github.com/alessandrod/aya", branch = "main" } +aya-bpf = { git = "http://github.com/aya-rs/aya", branch = "main" } {{ project-name }}-common = { path = "../{{ project-name }}-common" } [[bin]] diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index b8275f4..09ce7d0 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" publish = false [dependencies] -aya = { git = "https://github.com/alessandrod/aya", branch="main" } +aya = { git = "https://github.com/aya-rs/aya", branch="main" } {{project-name}}-common = { path = "../{{project-name}}-common", features=["userspace"] } anyhow = "1.0.42" ctrlc = "3.2"