Skip to content

Commit 43584bc

Browse files
committed
Initial commit
0 parents  commit 43584bc

File tree

20 files changed

+2407
-0
lines changed

20 files changed

+2407
-0
lines changed

.cargo/config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[alias]
2+
wasm = "build --release --target wasm32-unknown-unknown"
3+
unit-test = "test --lib"
4+
schema = "run --example schema"

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.rs]
11+
indent_size = 4

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Build results
2+
/target
3+
4+
# Cargo+Git helper file (https://github.com/rust-lang/cargo/blob/0.44.1/src/cargo/sources/git/utils.rs#L320-L327)
5+
.cargo-ok
6+
7+
# Text file backups
8+
**/*.rs.bk
9+
10+
# macOS
11+
.DS_Store
12+
13+
# IDEs
14+
*.iml
15+
.idea

0 commit comments

Comments
 (0)