[package] name = "manager_handlers" version = "0.4.1" edition = "2021" authors = ["Matei Aruxandei stefmatei22@gmail.com"] description = "This crate represents the implementation of manager capable of creating a microservice which has multiple handlers, which can be accesed via http from outside. Each handler can use the other ones via a bus to process the request. The handlers can have a number of replicas" license = "MIT" [dependencies] serde_json = "1.0.108" async-trait = "0.1.74" tokio = { version = "1.38.0", features = ["full"] } rocket = {version = "0.5", features = ["tls", "json"]} lazy_static = "1.5.0" futures = "0.3.30" [profile.release] opt-level = 3 lto = "thin"