Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

msgpack got renamed to msgpack4nim #5

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ os:
- linux

env:
- BRANCH="master"
- BRANCH="devel"

install:
- git clone -b $BRANCH git://github.com/Araq/Nim.git; cd Nim; git clone -b $BRANCH --depth 1 git://github.com/nim-lang/csources; cd csources && sh build.sh; cd ..; bin/nim c koch; ./koch boot -d:release; cd ..; export PATH=`pwd`/Nim/bin:$PATH
- git clone -b $BRANCH git://github.com/nim-lang/Nim.git; cd Nim; git clone -b master --depth 1 git://github.com/nim-lang/csources; cd csources && sh build.sh; cd ..; bin/nim c koch; ./koch boot -d:release; cd ..; export PATH=`pwd`/Nim/bin:$PATH
- git clone https://github.com/nim-lang/nimble.git; cd nimble; yes | nim c -r src/nimble install; cd ..; export PATH=~/.nimble/bin:$PATH; nimble update; nimble install msgpack4nim

before_script:
Expand Down
2 changes: 1 addition & 1 deletion example/example_server.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import nimrpc/rpc_server, nimrpc/rpc_type, asyncnet, asyncdispatch, msgpack
import nimrpc/rpc_server, nimrpc/rpc_type, asyncnet, asyncdispatch, msgpack4nim

# Define your remote proc
# Remote porc must have two params, first is input, second is output (so it's var param).
Expand Down
2 changes: 1 addition & 1 deletion nimrpc.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ srcDir = "src"
[Deps]
Requires: """

nim >= 0.11.2
nim >= 0.18.1
msgpack4nim >= 0.1.2


Expand Down
2 changes: 1 addition & 1 deletion src/nimrpc/rpc_client.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import net, asyncdispatch, msgpack, tables
import net, asyncdispatch, msgpack4nim, tables
import rpc_type

type
Expand Down
2 changes: 1 addition & 1 deletion src/nimrpc/rpc_server.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import asyncnet, asyncdispatch, msgpack, tables
import asyncnet, asyncdispatch, msgpack4nim, tables
import rpc_type

type
Expand Down