This repository has been archived by the owner on Oct 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe40748
commit 3ad948e
Showing
14 changed files
with
92 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (c) 2017-2018, EPFL/Blue Brain Project | ||
# Copyright (c) 2017-2019, EPFL/Blue Brain Project | ||
# [email protected] | ||
# | ||
# This file is part of Rockets <https://github.com/BlueBrain/Rockets> | ||
|
@@ -17,7 +17,7 @@ | |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
cmake_minimum_required(VERSION 3.1 FATAL_ERROR) | ||
project(Rockets VERSION 0.1.0) | ||
project(Rockets VERSION 1.0.0) | ||
set(Rockets_VERSION_ABI 1) | ||
|
||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/common) | ||
|
@@ -28,13 +28,20 @@ endif() | |
set(ROCKETS_DEB_DEPENDS libboost-test-dev libwebsockets-dev libuv1-dev) | ||
set(ROCKETS_PORT_DEPENDS libwebsockets) | ||
|
||
# disable noisy warnings from ChoosePython | ||
set(CHOOSE_PYTHON_DONE ON) | ||
include(FindBoostConfig) | ||
|
||
include(Common) | ||
|
||
set(ROCKETS_DESCRIPTION "Rockets - REST and websockets C++ library") | ||
set(ROCKETS_MAINTAINER "Blue Brain Project <[email protected]>") | ||
set(ROCKETS_LICENSE LGPL) | ||
|
||
common_find_package(Boost SYSTEM COMPONENTS unit_test_framework) | ||
if(APPLE) | ||
common_find_package(OpenSSL REQUIRED) # libwebsockets depends on that | ||
endif() | ||
common_find_package(Libwebsockets SYSTEM) | ||
if(NOT Libwebsockets_FOUND) # Ubuntu package only has libwebsockets.pc | ||
common_find_package_disable(Libwebsockets) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
# Changelog {#Changelog} | ||
|
||
# git master | ||
## [1.0.0](https://github.com/BlueBrain/Rockets/tree/1.0.0) (2019-01-07) | ||
|
||
* [14](https://github.com/BlueBrain/Rockets/pull/14): | ||
Added JSON-RPC 2.0 example applications. | ||
* [9](https://github.com/BlueBrain/Rockets/pull/9): | ||
Added JSON-RPC 2.0 support over HTTP. | ||
* [8](https://github.com/BlueBrain/Rockets/pull/8): | ||
Added JSON-RPC 2.0 parser with client-server over websockets. | ||
* [1](https://github.com/BlueBrain/Rockets/pull/1): | ||
Initial version. | ||
- First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
[metadata] | ||
version = 0.1.0-dev0 | ||
version = 1.0.0 | ||
name = rockets | ||
summary = Rockets python client | ||
home-page = https://github.com/BlueBrain/Rockets | ||
url = https://github.com/BlueBrain/Rockets | ||
author = Daniel Nachbaur | ||
author-email = [email protected] | ||
license = LGPLv3 | ||
classifier = | ||
Development Status :: 4 - Beta | ||
Development Status :: 5 - Production/Stable | ||
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Topic :: Software Development :: Libraries | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
keywords = rockets, websocket, jsonrpc, bbp, BlueBrain | ||
keywords = rockets, websocket, json-rpc, bbp, BlueBrain | ||
|
||
[pycodestyle] | ||
max-line-length = 100 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters