Index: Cargo.toml ================================================================== --- Cargo.toml +++ Cargo.toml @@ -1,8 +1,8 @@ [package] name = "swctx" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "0BSD" categories = [ "concurrency", "asynchronous" ] keywords = [ "channel", "threads", "sync", "message-passing" ] repository = "https://repos.qrnch.tech/pub/swctx" @@ -21,7 +21,10 @@ [dependencies] parking_lot = { version = "0.12.1" } [dev-dependencies] -tokio = { version = "1.29.1", features = ["rt-multi-thread"] } +tokio = { version = "1.31.0", features = ["rt-multi-thread"] } + +[package.metadata.docs.rs] +rustdoc-args = ["--generate-link-to-definition"] Index: www/changelog.md ================================================================== --- www/changelog.md +++ www/changelog.md @@ -6,10 +6,18 @@ ### Changed ### Removed + +## [0.2.1] - 2023-08-14 + +### Changed + +- Add `--generate-link-to-definition` to `rustdoc-args` in `Cargo.toml`. +- Update dev-dependency `tokio` to `1.31.0`. + ## [0.2.0] - 2023-08-10 ### Changed