Skip to content

Commit 182b9b7

Browse files
committed
wip: rewrite using dioxus
1 parent 54c6913 commit 182b9b7

File tree

152 files changed

+2227
-8323
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+2227
-8323
lines changed

.cargo/config.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[profile.release]
2+
opt-level = "z"
3+
debug = false
4+
lto = true
5+
codegen-units = 1
6+
panic = "abort"
7+
strip = true
8+
incremental = false

.gitattributes

-2
This file was deleted.

.github/workflows/deno.yml

-58
This file was deleted.

.gitignore

+6-34
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,7 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.pnpm-debug.log*
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target
4+
.DS_Store
95

10-
# Dependency directories
11-
node_modules/
12-
jspm_packages/
13-
14-
# Optional npm cache directory
15-
.npm
16-
17-
# Optional REPL history
18-
.node_repl_history
19-
20-
# dotenv environment variable files
21-
.env
22-
.env.development.local
23-
.env.test.local
24-
.env.production.local
25-
.env.local
26-
27-
# Vite generated output
28-
.vite/
29-
dist/
30-
31-
# Zed Editor
32-
.zed/
33-
34-
# IntelliJ IDEA
35-
.idea/
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk

0 commit comments

Comments
 (0)