Skip to content

Commit 57c75af

Browse files
committed
initial commit
0 parents  commit 57c75af

File tree

22 files changed

+7108
-0
lines changed

22 files changed

+7108
-0
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
root = true
2+
[*]
3+
indent_style=tab
4+
indent_size=tab
5+
tab_width=4
6+
end_of_line=lf
7+
charset=utf-8
8+
trim_trailing_whitespace=true
9+
max_line_length=120
10+
insert_final_newline=true
11+
12+
[*.{yml,yaml}]
13+
indent_style=space
14+
indent_size=2
15+
tab_width=8
16+
end_of_line=lf

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
**/target/
4+
5+
# These are backup files generated by rustfmt
6+
**/*.rs.bk

.rustfmt.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
reorder_imports = true
2+
hard_tabs = true
3+
max_width = 120

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: rust
2+
rust: nightly-2019-08-15
3+
cache: cargo
4+
before_script:
5+
- rustup target add wasm32-unknown-unknown
6+
- command -v wasm-gc || cargo install --git https://github.com/alexcrichton/wasm-gc --force
7+
- rustup component add rustfmt
8+
script:
9+
- cargo fmt --all -- --check
10+
- cargo build
11+
- cargo test --all

0 commit comments

Comments
 (0)