ump

Check-in Differences
Login

Check-in Differences

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

Difference From ump-0.10.0 To ump-0.10.1

2023-07-28
01:25
Rename 'send' message operation to 'request'. Add dev-docs feature for including internal notes to generated documentation. check-in: fb98947448 user: jan tags: trunk
2023-07-27
01:34
Release maintenance. check-in: 7079d4a788 user: jan tags: trunk, ump-0.10.1
01:31
Use sigq 0.13.3 to get puller bugfix. check-in: 3dece6432a user: jan tags: trunk
2023-07-26
21:01
Release maintenance. check-in: 95345f9568 user: jan tags: trunk, ump-0.10.0
20:55
Typo. check-in: 0485b4dd20 user: jan tags: trunk

Changes to Cargo.toml.

1
2
3
4
5
6
7
8
9
10
[package]
name = "ump"
version = "0.10.0"
authors = ["Jan Danielsson <jan.danielsson@qrnch.com>"]
edition = "2018"
license = "0BSD"
categories = [ "concurrency", "asynchronous" ]
keywords = [ "channel", "threads", "sync", "message-passing" ]
repository = "https://repos.qrnch.tech/pub/ump"
description = "Micro message passing library for threads/tasks communication."


|







1
2
3
4
5
6
7
8
9
10
[package]
name = "ump"
version = "0.10.1"
authors = ["Jan Danielsson <jan.danielsson@qrnch.com>"]
edition = "2018"
license = "0BSD"
categories = [ "concurrency", "asynchronous" ]
keywords = [ "channel", "threads", "sync", "message-passing" ]
repository = "https://repos.qrnch.tech/pub/ump"
description = "Micro message passing library for threads/tasks communication."
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  "rustfmt.toml",
  "tests",
  "www"
]

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

[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
tokio = { version = "1.29.1", features = ["full"] }

[[bench]]
name = "add_server"
harness = false








|









19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  "rustfmt.toml",
  "tests",
  "www"
]

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

[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
tokio = { version = "1.29.1", features = ["full"] }

[[bench]]
name = "add_server"
harness = false

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.10.0] - 2023-07-26

### Added

- Server's receive methods will fail with `Error::ClientsDisappeared` if all
  the associated Client objects have been dropped.










>
>
>
>
>
>
>
>







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.10.1] - 2023-07-27

### Changed

- Runtime dependencies:
  - Updated `sigq` to `0.13.3`.


## [0.10.0] - 2023-07-26

### Added

- Server's receive methods will fail with `Error::ClientsDisappeared` if all
  the associated Client objects have been dropped.