Crates.io | aries |
lib.rs | aries |
version | 0.1.0 |
source | src |
created_at | 2016-08-17 19:36:50.50041 |
updated_at | 2016-08-17 19:36:50.50041 |
description | a web framwork for rust-lang. |
homepage | https://github.com/itpkg/aries |
repository | https://github.com/itpkg/aries.git |
max_upload_size | |
id | 6007 |
size | 12,375 |
A web framework for rust language.
pacman -S rust cargo
git clone https://github.com/itpkg/aries.git
cd aries
cargo test -- --nocapture
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
autosave(enable)
language-mustache
language-gitignore
cargo build --release
strip target/release/aries
RUST_LOG=info ./target/release/aries
cargo fmt -- --write-mode=replace
OR
find . -type f -name "*.rs" -exec rustfmt --write-mode replace {} \;