├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── Guardfile ├── LICENSE.txt ├── Procfile ├── README.md ├── RustConfig ├── src ├── commands.rs ├── lib.rs ├── main.rs ├── river.rs └── server.rs ├── tests ├── lib_test.rs └── server_test.rs └── tmp └── rivers └── .keep /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /tmp 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | script: ./build.sh 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ./target/release/john 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/README.md -------------------------------------------------------------------------------- /RustConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/RustConfig -------------------------------------------------------------------------------- /src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/src/commands.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/river.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/src/river.rs -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/src/server.rs -------------------------------------------------------------------------------- /tests/lib_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/tests/lib_test.rs -------------------------------------------------------------------------------- /tests/server_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmq/john/HEAD/tests/server_test.rs -------------------------------------------------------------------------------- /tmp/rivers/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------