[package] name = "krpc" version = "0.2.0" edition = "2021" authors = ["zhangjk@yyits.cn"] description = "A asynchronous RPC library(include client and server) which can use easly and communicate by tokio unix/tcp socket" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1", features = ["derive"] } rmp-serde = "1" tokio = { version = "1", features = [ "net", "io-util", "sync", "rt", "macros", "time", ] } #pin-project = "1"