norpc 0.9.1

Framework for in-process microservices
Documentation
[package]
name = "norpc"
version = "0.9.1"
authors = ["Akira Hayakawa <ruby.wktk@gmail.com>"]
edition = "2021"
license = "MIT"
description = "Framework for in-process microservices"
repository = "https://github.com/akiradeveloper/norpc"
readme = "../README.md"
categories = ["concurrency"]
keywords = ["rpc", "microservices", "async"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
norpc-macros = { path = "../norpc-macros", version = "0.9.1" }
tower-service = "0.3"
async-trait = "0.1"
futures = "0.3"
anyhow = "1"

tokio = { version = "1", features = ["sync", "rt"], optional = true }
async-std = { version = "1", optional = true }

[features]
runtime = []
tokio-executor = ["tokio"]
async-std-executor = ["async-std"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]