Skip to content

Commit b6323aa

Browse files
Merge pull request #1 from lucascompython/feat-use-eframe
Feat use eframe
2 parents 8666f2b + cdafb11 commit b6323aa

36 files changed

+2643
-1403
lines changed

.cargo/.config.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[unstable]
2+
build-std = ["std", "panic_abort"]
3+
build-std-features = ["panic_immediate_abort"]
4+
trim-paths = true

.gitignore

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
/target
2-
.idea/
1+
# Mac stuff:
2+
.DS_Store
3+
4+
# trunk output folder
5+
dist
6+
7+
# Rust compile target directories:
8+
target
9+
target_ra
10+
target_wasm
11+
12+
# https://github.com/lycheeverse/lychee
13+
.lycheecache

.typos.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# https://github.com/crate-ci/typos
2+
# install: cargo install typos-cli
3+
# run: typos
4+
5+
[default.extend-words]
6+
egui = "egui" # Example for how to ignore a false positive

0 commit comments

Comments
 (0)