Skip to content

Commit 0a91a77

Browse files
Updating people, references, etc.
1 parent 4f2c50d commit 0a91a77

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,17 @@ We are dedicated to connecting the world through a high level, modern C++ networ
1212

1313
## Repositories
1414

15-
[chops-net-ip](https://connectivecpp.github.io/chops-net-ip), a high level, general purpose C++17 networking API that simplifies creating TCP and UDP network connections.
15+
[chops-net-ip](https://connectivecpp.github.io/chops-net-ip), a high level, general purpose C++ 17 (soon to be C++ 20) networking API that simplifies creating TCP and UDP network connections (work in progress - currently it is being reorganized).
1616

17-
[utility-rack](https://connectivecpp.github.io/utility-rack), a tasty collection of utilities, including general purpose functionality used in the Chops Net IP repository.
17+
[utility-rack](https://connectivecpp.github.io/utility-rack), a small and tasty collection of utilities.
18+
19+
[wait-queue](https://connectivecpp.github.io/wait-queue), a header-only C++ 20 MPMC thread-safe queue.
20+
21+
[binary-serialize](https://connectivecpp.github.io/binary-serialize), a header-only C++ 20 library for binary serialization, using `std::format` style syntax.
22+
23+
[periodic-timer](https://connectivecpp.github.io/periodic-timer), a header-only C++ 20 asynchronous periodic timer, using Asio facilities.
24+
25+
[shared-buffer](https://connectivecpp.github.io/shared-buffer), header-only C++ 20 reference counted byte buffer classes.
1826

1927
## About
2028

@@ -42,7 +50,9 @@ Principal Author is [Cliff Green](https://github.com/cliffg-softwarelibre).
4250

4351
Principal Co-author is [Thurman Gillespy](https://tgill880.github.io).
4452

45-
Team Members are [Roxanne Agerone](https://github.com/oxenran), [Nathan Deutsch](https://github.com/n-deutsch), [Casey Ghilardi](https://github.com/Crghilardi), and [Bryan Concari](https://github.com/irql).
53+
Team Members include [Roxanne Agerone](https://github.com/oxenran), [Nathan Deutsch](https://github.com/n-deutsch), and [Stephen Rogers](https://github.com/srcodes12).
54+
55+
Former Team Members include [Casey Ghilardi](https://github.com/Crghilardi), and [Bryan Concari](https://github.com/irql).
4656

4757
Logo and banner designed by Ariel Peretz.
4858

@@ -54,13 +64,13 @@ Chops Net IP is in use at [Sound Life Sciences](https://www.soundlifesci.com/),
5464

5565
## C++ Language Requirements and Alternatives
5666

57-
C++ 17 is the primary baseline for the Connective C++ projects.
67+
C++ 20 is the primary baseline for the Connective C++ projects (Chops Net IP is still being updated for C++ 20).
5868

5969
A significant number of C++ 11 features are in the APIs and implementations. A C++ 03 version will not be provided in any of the Connective C++ repositories.
6070

61-
There are numerous C++ 14 and C++ 17 features in use, although many of them could be replaced with Boost (or similar) utilities or rewritten to use only C++ 11 capabilities. For users that don't want to use the latest C++ compilers or compile with C++ 17 flags, Martin Moene provides an excellent set of header-only libraries that implement many useful C++ library features, both C++ 17 as well as future C++ standards (see [References](doc/references.md)).
71+
There are numerous C++ 14 and C++ 17 features in use, although many of them could be replaced with Boost (or similar) utilities or rewritten to use only C++ 11 (or 14 or 17) capabilities. For users that don't want to use the latest C++ compilers or compile with C++ 20 flags, Martin Moene provides an excellent set of header-only libraries that implement many useful C++ library features (see [References](doc/references.md)).
6272

63-
While the main production branch will always be developed and tested with C++ 17 features (and relatively current compilers), alternative branches and forks for older compiler versions may be implemented. Collaboration (through forking, change requests, etc) is very welcome to achieve older compiler conformance.
73+
While the main production branch will always be developed and tested with C++ 20 features (and relatively current compilers), alternative branches and forks for older compiler versions may be implemented. Collaboration (through forking, change requests, etc) is very welcome to achieve older compiler conformance.
6474

6575
## References
6676

0 commit comments

Comments
 (0)