# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "kumoko" version = "0.6.0" authors = ["BR03D"] include = [ "/src", "/examples", "/tests", "README.md", ] description = "A simple asynchronous server/client crate built on tokio for easy two-way streaming." readme = "README.md" keywords = [ "async", "server", "full-duplex", "rpc", ] categories = [ "asynchronous", "concurrency", "network-programming", ] license = "MIT OR Apache-2.0" repository = "https://github.com/BR03D/kumoko.git" [[example]] name = "minimal_server" required-features = ["server"] [[example]] name = "minimal_client" required-features = ["client"] [[example]] name = "basic" required-features = [ "server", "client", ] [[test]] name = "basic" required-features = [ "server", "client", ] [[test]] name = "many_clients" required-features = [ "server", "client", ] [[test]] name = "events" required-features = [ "server", "client", ] [dependencies.bincode] version = "2.0.0-rc.3" [dependencies.bytes] version = "1.2.1" [dependencies.tokio] version = "1.20" features = [ "macros", "net", "rt-multi-thread", "sync", "time", "io-util", ] [features] broadcast = ["server"] client = [] default = [ "client", "server", "broadcast", ] server = []