# 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 = "2018" name = "postage" version = "0.5.0" authors = ["Austin Jones "] description = "An async channel library" homepage = "https://github.com/austinjones/postage-rs" readme = "README.md" keywords = [ "async", "channels", ] categories = ["asynchronous"] license = "MIT" repository = "https://github.com/austinjones/postage-rs" [[bench]] name = "broadcast" harness = false [[bench]] name = "dispatch" harness = false [[bench]] name = "mpsc" harness = false [[bench]] name = "watch" harness = false [[bench]] name = "tokio_broadcast" harness = false [[bench]] name = "tokio_mpsc" harness = false [[bench]] name = "tokio_watch" harness = false [[bench]] name = "async_std_channel" harness = false [dependencies.atomic] version = "0.5" [dependencies.crossbeam-queue] version = "0.3" [dependencies.futures] version = "0.3" optional = true default-features = false [dependencies.log] version = "0.4" optional = true [dependencies.parking_lot] version = "0.12" [dependencies.pin-project] version = "1" [dependencies.pollster] version = "0.2" optional = true [dependencies.simple_logger] version = "2.1" optional = true [dependencies.static_assertions] version = "1.1.0" [dependencies.thiserror] version = "1.0" [dev-dependencies.async-std] version = "1.9" features = ["attributes"] [dev-dependencies.criterion] version = "0.3" [dev-dependencies.futures] version = "0.3" default-features = false [dev-dependencies.futures-test] version = "0.3" [dev-dependencies.tokio] version = "1.0" features = [ "rt", "rt-multi-thread", "macros", "time", "sync", ] [features] blocking = ["pollster"] debug = [ "log", "simple_logger", ] default = [ "logging", "blocking", ] futures-traits = ["futures"] logging = ["log"]