# 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 = "gipc" version = "0.2.0" authors = ["tecc "] description = """ A generic abstraction layer over raw sockets for interprocess communication, with async support. """ readme = "README.md" keywords = [ "ipc", "interprocess", "io", ] categories = [ "network-programming", "asynchronous", "os", ] license = "MIT" repository = "https://github.com/tecc/gipc" [package.metadata.docs.rs] features = [ "sync", "async-tokio", "tokio/full", ] rustc-args = [ "--cfg", "docsrs", ] [[example]] name = "sync" required-features = ["sync"] [[example]] name = "async-tokio" required-features = ["async-tokio"] [dependencies.async-trait] version = "0.1.68" optional = true [dependencies.byteorder] version = "1.4.3" [dependencies.ciborium] version = "0.2.0" [dependencies.dirs] version = "5.0.0" [dependencies.futures-io] version = "0.3.28" optional = true [dependencies.interprocess] version = "1.2.1" [dependencies.serde] version = "1.0.159" [dependencies.thiserror] version = "1.0.40" [dependencies.tokio] version = "1.27.0" optional = true default-features = false [dependencies.tokio-util] version = "0.7.7" optional = true default-features = false [dev-dependencies.tokio] version = "1.27.0" features = ["full"] [features] async-tokio = [ "dep:async-trait", "dep:futures-io", "tokio/rt", "tokio-util/compat", "interprocess/tokio_support", ] default = ["sync"] sync = []