├── .gitignore ├── .vscode └── rusty-rocket.code-snippets ├── Cargo.lock ├── Cargo.toml ├── readme.md ├── requests.http ├── rusty-rockets.png └── src ├── api_key.rs ├── main.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.vscode/rusty-rocket.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/.vscode/rusty-rocket.code-snippets -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/Cargo.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/readme.md -------------------------------------------------------------------------------- /requests.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/requests.http -------------------------------------------------------------------------------- /rusty-rockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/rusty-rockets.png -------------------------------------------------------------------------------- /src/api_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/src/api_key.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstropek/RustyRockets/HEAD/src/tests.rs --------------------------------------------------------------------------------