├── .github └── workflows │ └── build-test.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cmake ├── Config.cmake.in ├── ConfigVersion.cmake.in ├── buildOptions.cmake ├── buildOptions.cmake.in ├── coprotoConfig.cmake ├── coprotoConfigVersion.cmake ├── coprotoFindDeps.cmake ├── preamble.cmake └── testProject │ ├── CMakeLists.txt │ ├── CMakePresets.json │ └── src.cpp ├── coproto ├── CMakeLists.txt ├── Common │ ├── CLP.cpp │ ├── CLP.h │ ├── Defines.h │ ├── Exceptions.h │ ├── Function.h │ ├── InlinePoly.h │ ├── Optional.h │ ├── Queue.h │ ├── Result.h │ ├── TypeTraits.h │ ├── Util.cpp │ ├── Util.h │ ├── Variant.h │ ├── error_code.cpp │ ├── error_code.h │ ├── macoro.h │ └── span.h ├── Proto │ ├── Buffers.h │ ├── Operation.h │ └── SessionID.h ├── Socket │ ├── AsioSocket.cpp │ ├── AsioSocket.h │ ├── BufferingSocket.h │ ├── Executor.h │ ├── LocalAsyncSock.h │ ├── RecvOperation.h │ ├── SendOperation.h │ ├── Socket.h │ ├── SocketFork.h │ ├── SocketScheduler.cpp │ └── SocketScheduler.h ├── config.h.in └── coproto.h ├── frontend ├── CMakeLists.txt ├── SocketTutorial.cpp ├── SocketTutorial.h ├── cpp14Tutorial.cpp ├── cpp14Tutorial.h ├── cpp20Tutorial.cpp ├── cpp20Tutorial.h └── main.cpp ├── misc ├── banner.png ├── logo-small.png ├── logo.png └── todo.txt ├── tests ├── AsioSocket_tests.cpp ├── AsioSocket_tests.h ├── AsioTlsSocket_tests.cpp ├── AsioTlsSocket_tests.h ├── BufferingSocket_tests.cpp ├── BufferingSocket_tests.h ├── CMakeLists.txt ├── InlinePoly.cpp ├── LocalAsyncSocket_tests.cpp ├── LocalAsyncSocket_tests.h ├── Queue_tests.cpp ├── SocketScheduler_tests.cpp ├── SocketScheduler_tests.h ├── TaskProto14_tests.cpp ├── TaskProto14_tests.h ├── TaskProto_tests.cpp ├── TaskProto_tests.h ├── Tests.cpp ├── Tests.h ├── TypeTraits.cpp ├── cert │ ├── ca.cert.pem │ ├── ca.cert.srl │ ├── ca.key.pem │ ├── client-0.cert.pem │ ├── client-0.csr.pem │ ├── client-0.key.pem │ ├── readme.txt │ ├── server-0.cert.pem │ ├── server-0.csr.pem │ └── server-0.key.pem ├── config.h.in └── eval.h └── thirdparty ├── .gitignore ├── fetch.cmake ├── findvs.ps1 ├── getBoost.cmake ├── getFunction2.cmake ├── getMacoro.cmake └── getSpanLite.cmake /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/Config.cmake.in -------------------------------------------------------------------------------- /cmake/ConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/ConfigVersion.cmake.in -------------------------------------------------------------------------------- /cmake/buildOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/buildOptions.cmake -------------------------------------------------------------------------------- /cmake/buildOptions.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/buildOptions.cmake.in -------------------------------------------------------------------------------- /cmake/coprotoConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/coprotoConfig.cmake -------------------------------------------------------------------------------- /cmake/coprotoConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/coprotoConfigVersion.cmake -------------------------------------------------------------------------------- /cmake/coprotoFindDeps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/coprotoFindDeps.cmake -------------------------------------------------------------------------------- /cmake/preamble.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/preamble.cmake -------------------------------------------------------------------------------- /cmake/testProject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/testProject/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/testProject/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/testProject/CMakePresets.json -------------------------------------------------------------------------------- /cmake/testProject/src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/cmake/testProject/src.cpp -------------------------------------------------------------------------------- /coproto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/CMakeLists.txt -------------------------------------------------------------------------------- /coproto/Common/CLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/CLP.cpp -------------------------------------------------------------------------------- /coproto/Common/CLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/CLP.h -------------------------------------------------------------------------------- /coproto/Common/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Defines.h -------------------------------------------------------------------------------- /coproto/Common/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Exceptions.h -------------------------------------------------------------------------------- /coproto/Common/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Function.h -------------------------------------------------------------------------------- /coproto/Common/InlinePoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/InlinePoly.h -------------------------------------------------------------------------------- /coproto/Common/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Optional.h -------------------------------------------------------------------------------- /coproto/Common/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Queue.h -------------------------------------------------------------------------------- /coproto/Common/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Result.h -------------------------------------------------------------------------------- /coproto/Common/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/TypeTraits.h -------------------------------------------------------------------------------- /coproto/Common/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Util.cpp -------------------------------------------------------------------------------- /coproto/Common/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Util.h -------------------------------------------------------------------------------- /coproto/Common/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/Variant.h -------------------------------------------------------------------------------- /coproto/Common/error_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/error_code.cpp -------------------------------------------------------------------------------- /coproto/Common/error_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/error_code.h -------------------------------------------------------------------------------- /coproto/Common/macoro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/macoro.h -------------------------------------------------------------------------------- /coproto/Common/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Common/span.h -------------------------------------------------------------------------------- /coproto/Proto/Buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Proto/Buffers.h -------------------------------------------------------------------------------- /coproto/Proto/Operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Proto/Operation.h -------------------------------------------------------------------------------- /coproto/Proto/SessionID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Proto/SessionID.h -------------------------------------------------------------------------------- /coproto/Socket/AsioSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/AsioSocket.cpp -------------------------------------------------------------------------------- /coproto/Socket/AsioSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/AsioSocket.h -------------------------------------------------------------------------------- /coproto/Socket/BufferingSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/BufferingSocket.h -------------------------------------------------------------------------------- /coproto/Socket/Executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/Executor.h -------------------------------------------------------------------------------- /coproto/Socket/LocalAsyncSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/LocalAsyncSock.h -------------------------------------------------------------------------------- /coproto/Socket/RecvOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/RecvOperation.h -------------------------------------------------------------------------------- /coproto/Socket/SendOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/SendOperation.h -------------------------------------------------------------------------------- /coproto/Socket/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/Socket.h -------------------------------------------------------------------------------- /coproto/Socket/SocketFork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/SocketFork.h -------------------------------------------------------------------------------- /coproto/Socket/SocketScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/SocketScheduler.cpp -------------------------------------------------------------------------------- /coproto/Socket/SocketScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/Socket/SocketScheduler.h -------------------------------------------------------------------------------- /coproto/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/config.h.in -------------------------------------------------------------------------------- /coproto/coproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/coproto/coproto.h -------------------------------------------------------------------------------- /frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /frontend/SocketTutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/SocketTutorial.cpp -------------------------------------------------------------------------------- /frontend/SocketTutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/SocketTutorial.h -------------------------------------------------------------------------------- /frontend/cpp14Tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/cpp14Tutorial.cpp -------------------------------------------------------------------------------- /frontend/cpp14Tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/cpp14Tutorial.h -------------------------------------------------------------------------------- /frontend/cpp20Tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/cpp20Tutorial.cpp -------------------------------------------------------------------------------- /frontend/cpp20Tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/cpp20Tutorial.h -------------------------------------------------------------------------------- /frontend/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/frontend/main.cpp -------------------------------------------------------------------------------- /misc/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/misc/banner.png -------------------------------------------------------------------------------- /misc/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/misc/logo-small.png -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/misc/logo.png -------------------------------------------------------------------------------- /misc/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/misc/todo.txt -------------------------------------------------------------------------------- /tests/AsioSocket_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/AsioSocket_tests.cpp -------------------------------------------------------------------------------- /tests/AsioSocket_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/AsioSocket_tests.h -------------------------------------------------------------------------------- /tests/AsioTlsSocket_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/AsioTlsSocket_tests.cpp -------------------------------------------------------------------------------- /tests/AsioTlsSocket_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/AsioTlsSocket_tests.h -------------------------------------------------------------------------------- /tests/BufferingSocket_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/BufferingSocket_tests.cpp -------------------------------------------------------------------------------- /tests/BufferingSocket_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/BufferingSocket_tests.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/InlinePoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/InlinePoly.cpp -------------------------------------------------------------------------------- /tests/LocalAsyncSocket_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/LocalAsyncSocket_tests.cpp -------------------------------------------------------------------------------- /tests/LocalAsyncSocket_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/LocalAsyncSocket_tests.h -------------------------------------------------------------------------------- /tests/Queue_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/Queue_tests.cpp -------------------------------------------------------------------------------- /tests/SocketScheduler_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/SocketScheduler_tests.cpp -------------------------------------------------------------------------------- /tests/SocketScheduler_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/SocketScheduler_tests.h -------------------------------------------------------------------------------- /tests/TaskProto14_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/TaskProto14_tests.cpp -------------------------------------------------------------------------------- /tests/TaskProto14_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/TaskProto14_tests.h -------------------------------------------------------------------------------- /tests/TaskProto_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/TaskProto_tests.cpp -------------------------------------------------------------------------------- /tests/TaskProto_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/TaskProto_tests.h -------------------------------------------------------------------------------- /tests/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/Tests.cpp -------------------------------------------------------------------------------- /tests/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/Tests.h -------------------------------------------------------------------------------- /tests/TypeTraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/TypeTraits.cpp -------------------------------------------------------------------------------- /tests/cert/ca.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/ca.cert.pem -------------------------------------------------------------------------------- /tests/cert/ca.cert.srl: -------------------------------------------------------------------------------- 1 | 50FD6925B48C1CD278983C1A01F6FD6C9EAC3817 2 | -------------------------------------------------------------------------------- /tests/cert/ca.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/ca.key.pem -------------------------------------------------------------------------------- /tests/cert/client-0.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/client-0.cert.pem -------------------------------------------------------------------------------- /tests/cert/client-0.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/client-0.csr.pem -------------------------------------------------------------------------------- /tests/cert/client-0.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/client-0.key.pem -------------------------------------------------------------------------------- /tests/cert/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/readme.txt -------------------------------------------------------------------------------- /tests/cert/server-0.cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/server-0.cert.pem -------------------------------------------------------------------------------- /tests/cert/server-0.csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/server-0.csr.pem -------------------------------------------------------------------------------- /tests/cert/server-0.key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/cert/server-0.key.pem -------------------------------------------------------------------------------- /tests/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/config.h.in -------------------------------------------------------------------------------- /tests/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/tests/eval.h -------------------------------------------------------------------------------- /thirdparty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/.gitignore -------------------------------------------------------------------------------- /thirdparty/fetch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/fetch.cmake -------------------------------------------------------------------------------- /thirdparty/findvs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/findvs.ps1 -------------------------------------------------------------------------------- /thirdparty/getBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/getBoost.cmake -------------------------------------------------------------------------------- /thirdparty/getFunction2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/getFunction2.cmake -------------------------------------------------------------------------------- /thirdparty/getMacoro.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/getMacoro.cmake -------------------------------------------------------------------------------- /thirdparty/getSpanLite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Visa-Research/coproto/HEAD/thirdparty/getSpanLite.cmake --------------------------------------------------------------------------------