Sebastian Hugentobler
dac95b7dae
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.
16 lines
308 B
TOML
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" |