├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── database.json └── src ├── code_template.rs └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderaidershaun/rust-web-server-template/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderaidershaun/rust-web-server-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderaidershaun/rust-web-server-template/HEAD/README.md -------------------------------------------------------------------------------- /database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderaidershaun/rust-web-server-template/HEAD/database.json -------------------------------------------------------------------------------- /src/code_template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderaidershaun/rust-web-server-template/HEAD/src/code_template.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderaidershaun/rust-web-server-template/HEAD/src/main.rs --------------------------------------------------------------------------------