Skip to content

Commit

Permalink
Rust language reimplementation
Browse files Browse the repository at this point in the history
Connects-To: #104
Change-Type: major
  • Loading branch information
majorz committed Jun 29, 2017
1 parent 614e297 commit 1a31569
Show file tree
Hide file tree
Showing 30 changed files with 1,904 additions and 677 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,10 @@ src/public/bower_components

# VSCode
.vscode

# Generated by Cargo
# will have compiled files and executables
/target/

# These are backup files generated by rustfmt
**/*.rs.bk
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
dist: trusty
sudo: required
language: rust
cache: cargo
rust:
- nightly
- beta
- stable
before_install:
- sudo apt-get -qq update
- sudo apt-get install -yq --no-install-recommends libdbus-1-dev
install:
- type -p cargo-install-update || cargo install cargo-update
- cargo install-update -i cargo-update
- cargo install-update -i rustfmt
- if [ $TRAVIS_RUST_VERSION == nightly ]; then
cargo install-update -i clippy;
fi
script:
- cargo fmt -- --write-mode=diff
- if [ $TRAVIS_RUST_VERSION == nightly ]; then
cargo clippy -- -D warnings;
fi
- cargo build
Loading

0 comments on commit 1a31569

Please sign in to comment.