package: # When releasing to crates.io: # # - last check for all TODO, FIXME, expect, unwrap. # - recheck log statements (informative, none left that were just for development, ...) # - `cargo +nightly doc` and re-read and final polish of documentation. # # - Update CHANGELOG.md. # - Update version numbers in Cargo.yml, Cargo.toml, install section of readme. # # - `touch **.rs && cargo clippy --tests --examples --benches --all-features` # - `cargo update` # - `cargo udeps --all-targets --all-features` # - `cargo audit` # - `cargo crev crate verify --show-all --recursive` and review. # - 'cargo test --all-targets --all-features' # # - push dev and verify CI result # - `cargo test` on dependent crates # # - cargo publish # - `git checkout master && git merge dev --no-ff` # - `git tag x.x.x` with version number. # - `git push && git push --tags` # version : 0.2.1 name : async_progress authors : [ Naja Melan ] description : Create sync points across async tasks documentation : https://docs.rs/async_progress repository : https://github.com/najamelan/async_progress readme : README.md keywords : [synchronization] categories : [asynchronous, concurrency, "development-tools::testing"] license : Unlicense edition : "2018" resolver : "2" metadata: docs: rs: all-features: true targets : [] features: external_doc: [] badges: maintenance : { status : actively-developed } travis-ci : { repository : najamelan/async_progress } dependencies: futures : ^0.3 pharos : ^0.5 log : ^0.4 dev-dependencies: pretty_assertions : ^1 build-dependencies: rustc_version: ^0.4