aries

Crates.ioaries
lib.rsaries
version0.1.0
sourcesrc
created_at2016-08-17 19:36:50.50041
updated_at2016-08-17 19:36:50.50041
descriptiona web framwork for rust-lang.
homepagehttps://github.com/itpkg/aries
repositoryhttps://github.com/itpkg/aries.git
max_upload_size
id6007
size12,375
Jeremy Zheng (chonglou)

documentation

https://github.com/itpkg/aries/src/doc

README

Aries

A web framework for rust language.

Devel

Rust

pacman -S rust cargo
git clone https://github.com/itpkg/aries.git
cd aries
cargo test -- --nocapture

Plugins(for atom)

cargo install rustfmt
cargo install racer
echo "export PATH=\$HOME/.cargo/bin:\$PATH" >> ~/.zshrc

remember to enable autosave

  • atom-beautify(beautify on save)

  • git-plus

  • language-rust

  • racer

  • autosave(enable)

  • language-mustache

  • language-gitignore

Build

cargo build --release
strip target/release/aries
RUST_LOG=info ./target/release/aries

Notes

  • Format rust code file
cargo fmt -- --write-mode=replace

OR

find . -type f -name "*.rs" -exec rustfmt --write-mode replace {} \;

Thinks

Commit count: 27

cargo fmt