2022-10-20 09:47:50 +00:00
[ package ]
2022-11-16 13:15:58 +00:00
name = "overwatch-rs"
2022-10-20 09:47:50 +00:00
version = "0.1.0"
edition = "2021"
authors = [
"Daniel Sanchez Quiros <danielsq@status.im>"
]
2022-11-16 13:15:58 +00:00
license-file = "LICENSE"
homepage = "https://github.com/logos-co/Overwatch"
repository = "https://github.com/logos-co/Overwatch"
description = "Overwatch is a framework to easily construct applications that requires of several independent parts that needs communication between them. Everything is self-contained, and it matches somewhat the advantages of microservices."
readme = "README.md"
keywords = [ "async" , "services" ]
categories = [ "Asynchronous" ]
exclude = [
"./tests" ,
".github" ,
]
2022-10-20 09:47:50 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-10-05 17:33:12 +00:00
[ features ]
default = [ "derive" ]
derive = [ "dep:overwatch-derive" ]
2024-12-19 15:14:18 +00:00
instrumentation = [ ]
2022-10-20 09:47:50 +00:00
[ dependencies ]
2023-10-05 17:33:12 +00:00
overwatch-derive = { path = "../overwatch-derive" , optional = true }
2022-10-20 09:47:50 +00:00
const-str = "0.3"
2022-12-10 08:01:16 +00:00
color-eyre = "0.6"
2022-10-20 09:47:50 +00:00
async-trait = "0.1"
futures = "0.3"
thiserror = "1.0"
2023-10-09 12:00:12 +00:00
tokio = { version = "1.32" , features = [ "rt-multi-thread" , "sync" , "time" ] }
2022-10-20 09:47:50 +00:00
tokio-stream = { version = "0.1" , features = [ "sync" ] }
2022-12-14 14:41:01 +00:00
tokio-util = "0.7"
2022-10-20 09:47:50 +00:00
tracing = "0.1"
[ dev-dependencies ]
tokio = { version = "1.17" , features = [ "rt-multi-thread" , "sync" , "time" , "io-std" , "io-util" , "macros" ] }
2023-10-05 17:33:12 +00:00
overwatch-derive = { path = "../overwatch-derive" }