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 --all-features --no-deps --open` and re-read and final polish of documentation. # # - Update CHANGELOG.md. # - Update version numbers in Cargo.yml, Cargo.toml, install section of readme. # # - `cargo clippy --tests --examples --benches --all-features` # - `cargo update` # - `cargo outdated --root-deps-only` # - `cargo +nightly 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 release && git merge dev --no-ff` # - `git tag x.x.x` with version number. # - `git push && git push --tags` # version : 0.2.0 name : thespis edition : '2021' resolver : '2' authors : [ Naja Melan ] description : The interface of the thespis actor model (contains only traits). license : Unlicense homepage : https://github.com/thespis-rs/thespis_iface repository : https://github.com/thespis-rs/thespis_iface documentation : https://docs.rs/thespis readme : README.md keywords : [ async, futures, actor, thespis ] categories : [ asynchronous, concurrency ] metadata: docs: rs: all-features: true features: default: [ derive ] derive : [ thespis_derive ] dependencies: futures-sink : { version: ^0.3, features: [std], default-features: false } thespis_derive : { version: ^0.1, optional: true } build-dependencies: rustc_version: ^0.4