[dependencies.futures]
version = "0.3"
[dependencies.pin-project-lite]
version = "0.2"
[dev-dependencies.tokio]
features = ["rt", "macros", "time"]
version = "1.43"
[lib]
name = "sipper"
path = "src/lib.rs"
[lints.clippy]
default_trait_access = "deny"
filter_map_next = "deny"
from_over_into = "deny"
manual_let_else = "deny"
match-wildcard-for-single-variants = "deny"
needless_borrow = "deny"
new_without_default = "deny"
redundant-closure-for-method-calls = "deny"
semicolon_if_nothing_returned = "deny"
trivially-copy-pass-by-ref = "deny"
type-complexity = "allow"
unused_async = "deny"
useless_conversion = "deny"
[lints.rust]
missing_debug_implementations = "deny"
missing_docs = "deny"
unsafe_code = "deny"
unused_results = "deny"
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rustdoc]
broken_intra_doc_links = "forbid"
[package]
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency"]
description = "A type-safe future that can notify progress"
edition = "2021"
keywords = ["futures", "async", "stream", "progress", "notify"]
license = "MIT"
name = "sipper"
readme = "README.md"
repository = "https://github.com/hecrj/sipper"
version = "0.1.0"