This commit is contained in:
Sicheng Pan 2025-11-13 00:23:29 -08:00
parent 32c499da0a
commit e28a5f66bf
5 changed files with 21 additions and 2 deletions

8
.gitignore vendored
View file

@ -4,7 +4,11 @@
!flake.nix
!flake.lock
!euler/
!euler/**
euler/target/
!xiao-esp32c6/
!xiao-esp32c6/**
xiao-esp32c6/.embuild
xiao-esp32c6/target
xiao-esp32c6/.embuild/
xiao-esp32c6/target/

7
euler/Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "euler"
version = "0.1.0"

6
euler/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "euler"
version = "0.1.0"
edition = "2024"
[dependencies]

1
euler/src/lib.rs Normal file
View file

@ -0,0 +1 @@

1
euler/src/main.rs Normal file
View file

@ -0,0 +1 @@
fn main() {}