vesys-bank-server/http-server/Cargo.toml
Sebastian Hugentobler dac95b7dae
Implement the http variant of the bank server.
During that process, many shortcomings with the socket server and the
bank lib were fixed.

I am aware a massive commit like this is not ideal.
2022-03-18 19:35:34 +01:00

16 lines
308 B
TOML

[package]
name = "http-server"
version = "0.1.0"
edition = "2021"
[dependencies]
bank = { path = "../bank" }
actix-web = "4.0.1"
anyhow = "1.0.55"
thiserror = "1.0.30"
log = "0.4.14"
pretty_env_logger = "0.4.0"
serde = { version = "1.0.136", features = ["derive"] }
[dev-dependencies]
serde_json = "1.0.79"