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"