├── .cargo └── config.toml ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-GPL2 ├── LICENSE-MIT ├── README.md ├── cargo-generate.toml ├── pre-script.rhai ├── rustfmt.toml ├── test.sh ├── {{project-name}}-common ├── Cargo.toml └── src │ └── lib.rs ├── {{project-name}}-ebpf ├── Cargo.toml ├── build.rs └── src │ ├── lib.rs │ └── main.rs └── {{project-name}} ├── Cargo.toml ├── build.rs └── src └── main.rs /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [target."cfg(all())"] 2 | runner = "sudo -E" 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/LICENSE-GPL2 -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/README.md -------------------------------------------------------------------------------- /cargo-generate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/cargo-generate.toml -------------------------------------------------------------------------------- /pre-script.rhai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/pre-script.rhai -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/test.sh -------------------------------------------------------------------------------- /{{project-name}}-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}-common/Cargo.toml -------------------------------------------------------------------------------- /{{project-name}}-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}-common/src/lib.rs -------------------------------------------------------------------------------- /{{project-name}}-ebpf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}-ebpf/Cargo.toml -------------------------------------------------------------------------------- /{{project-name}}-ebpf/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}-ebpf/build.rs -------------------------------------------------------------------------------- /{{project-name}}-ebpf/src/lib.rs: -------------------------------------------------------------------------------- 1 | #![no_std] 2 | 3 | // This file exists to enable the library target. 4 | -------------------------------------------------------------------------------- /{{project-name}}-ebpf/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}-ebpf/src/main.rs -------------------------------------------------------------------------------- /{{project-name}}/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}/Cargo.toml -------------------------------------------------------------------------------- /{{project-name}}/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}/build.rs -------------------------------------------------------------------------------- /{{project-name}}/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aya-rs/aya-template/HEAD/{{project-name}}/src/main.rs --------------------------------------------------------------------------------