Go to file
Sebastian Hugentobler 8bcd555d71 add http-client 2022-03-25 19:18:55 +01:00
.idea add http-client 2022-03-25 19:18:55 +01:00
bank add http-client 2022-03-25 19:18:55 +01:00
http-client add http-client 2022-03-25 19:18:55 +01:00
http-lib add http-client 2022-03-25 19:18:55 +01:00
http-server add http-client 2022-03-25 19:18:55 +01:00
socket-server Implement the http variant of the bank server. 2022-03-18 19:35:34 +01:00
.gitignore initial commit 2022-03-12 16:19:54 +01:00
.gitlab-ci.yml Update .gitlab-ci.yml file 2022-03-19 09:17:31 +00:00
Cargo.lock add http-client 2022-03-25 19:18:55 +01:00
Cargo.toml add http-client 2022-03-25 19:18:55 +01:00
LICENSE Update LICENSE 2022-03-19 11:41:18 +00:00
README.md typo corrections in readme 2022-03-19 10:02:39 +01:00

README.md

vesys bank servers

Implementations of a simple bank server for the 2022 vesys class at FHNW.

Please note that the writer is in no way an experienced or even professional rust developer (hence the cloning everywhere) and most of this was written in a hurry. Parts of the code might sneak into your house in bright daylight and marry your cat to run off with them to Greenland or wherever it is they go for their honeymoon.

socket-server

Use an on-the-fly invented byte protocol. Consult the code for documentation.

http-server

An http implementation, using actix-web, wanted to try that for a while now. Again, consult the code for information on how the routes work.

Usage

Run it like you would with any cargo workspace project.

For example, starting the http-server variant, with debug logging and compiled in release mode:

 RUST_LOG=debug cargo run --release --bin http-server