swctx

Check-in Differences
Login

Check-in Differences

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Difference From swctx-0.2.0 To swctx-0.2.1

2023-08-24
21:23
Export WaitFuture and implement Future for WaitCtx. check-in: 32cef01be1 user: jan tags: trunk
2023-08-14
21:33
Release maintenance. check-in: ca475da22a user: jan tags: swctx-0.2.1, trunk
21:30
Add --generate-link-to-definition to rustdoc. check-in: fb0d7a6b05 user: jan tags: trunk
2023-08-10
15:40
Add some test comments. check-in: cab5919dd1 user: jan tags: swctx-0.2.0, trunk
15:28
Release maintenance. check-in: 369d9fded8 user: jan tags: trunk

Changes to Cargo.toml.

1
2
3
4
5
6
7
8
9
10
[package]
name = "swctx"
version = "0.2.0"
edition = "2021"
license = "0BSD"
categories = [ "concurrency", "asynchronous" ]
keywords = [ "channel", "threads", "sync", "message-passing" ]
repository = "https://repos.qrnch.tech/pub/swctx"
description = "One-shot channel with some special semantics."
rust-version = "1.56"


|







1
2
3
4
5
6
7
8
9
10
[package]
name = "swctx"
version = "0.2.1"
edition = "2021"
license = "0BSD"
categories = [ "concurrency", "asynchronous" ]
keywords = [ "channel", "threads", "sync", "message-passing" ]
repository = "https://repos.qrnch.tech/pub/swctx"
description = "One-shot channel with some special semantics."
rust-version = "1.56"
19
20
21
22
23
24
25
26
27



[features]
dev-docs = []

[dependencies]
parking_lot = { version = "0.12.1" }

[dev-dependencies]
tokio = { version = "1.29.1", features = ["rt-multi-thread"] }











|

>
>
>
19
20
21
22
23
24
25
26
27
28
29
30
[features]
dev-docs = []

[dependencies]
parking_lot = { version = "0.12.1" }

[dev-dependencies]
tokio = { version = "1.31.0", features = ["rt-multi-thread"] }

[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]

Changes to www/changelog.md.

1
2
3
4
5
6
7
8
9
10








11
12
13
14
15
16
17
# Change Log

## [Unreleased]

### Added

### Changed

### Removed










## [0.2.0] - 2023-08-10

### Changed

- Generalize `SetCtx` state.











>
>
>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Change Log

## [Unreleased]

### Added

### 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

- Generalize `SetCtx` state.