[package] name = "async-utf8-decoder" version = "1.0.0" authors = ["Alisue "] edition = "2018" description = "Convert AsyncRead to incremental UTF8 string stream" repository = "https://github.com/lambdalisue/rs-async-utf8-decoder" license = "MIT" readme = "README.md" exclude = [ ".github/*", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures-core = "0.3.21" futures-io = "0.3.21" pin-project-lite = "0.2.8" thiserror = "2.0.0" [dev-dependencies] anyhow = "1.0.53" futures = "0.3.21" futures-await-test = "0.3.0" futures-timer = "3.0.2" async-std = { version = "1.10.0", features = ["attributes"] } criterion = { version = "0.5.1", features = ["html_reports", "async_futures"] } [[bench]] name = "my_benchmark" harness = false