feat(git): init

This commit is contained in:
catvayor 2025-01-29 17:08:31 +01:00
commit 24228f72c0
Signed by: lbailly
GPG key ID: CE3E645251AC63F3
4 changed files with 16 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
/target
.direnv
.envrc

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "vxlan-router"
version = "0.1.0"
edition = "2021"
[dependencies]

4
shell.nix Normal file
View file

@ -0,0 +1,4 @@
{ pkgs ? (import <nixpkgs>) { }, lib ? pkgs.lib }:
pkgs.mkShell {
buildInputs = with pkgs; [ cargo rustc rustfmt ];
}

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}