From 0c98f79d9cff304143ffc22c134db5ccec95b645 Mon Sep 17 00:00:00 2001 From: coffeepots Date: Tue, 26 Jun 2018 19:08:11 +0100 Subject: [PATCH] Rename to json_rpc --- eth_rpc.nimble => json_rpc.nimble | 4 ++-- {rpc => json_rpc}/client.nim | 0 {rpc => json_rpc}/jsonmarshal.nim | 0 {rpc => json_rpc}/server.nim | 0 rpcclient.nim | 2 +- rpcserver.nim | 2 +- 6 files changed, 4 insertions(+), 4 deletions(-) rename eth_rpc.nimble => json_rpc.nimble (90%) rename {rpc => json_rpc}/client.nim (100%) rename {rpc => json_rpc}/jsonmarshal.nim (100%) rename {rpc => json_rpc}/server.nim (100%) diff --git a/eth_rpc.nimble b/json_rpc.nimble similarity index 90% rename from eth_rpc.nimble rename to json_rpc.nimble index f6b2a08..c840ac7 100644 --- a/eth_rpc.nimble +++ b/json_rpc.nimble @@ -1,5 +1,5 @@ -packageName = "eth_rpc" -version = "0.0.1" +packageName = "json_rpc" +version = "0.0.2" author = "Status Research & Development GmbH" description = "Ethereum remote procedure calls" license = "Apache License 2.0" diff --git a/rpc/client.nim b/json_rpc/client.nim similarity index 100% rename from rpc/client.nim rename to json_rpc/client.nim diff --git a/rpc/jsonmarshal.nim b/json_rpc/jsonmarshal.nim similarity index 100% rename from rpc/jsonmarshal.nim rename to json_rpc/jsonmarshal.nim diff --git a/rpc/server.nim b/json_rpc/server.nim similarity index 100% rename from rpc/server.nim rename to json_rpc/server.nim diff --git a/rpcclient.nim b/rpcclient.nim index 14712ef..ebecba9 100644 --- a/rpcclient.nim +++ b/rpcclient.nim @@ -1,3 +1,3 @@ -import rpc / client +import json_rpc / client export client diff --git a/rpcserver.nim b/rpcserver.nim index af3bbfb..ef197d1 100644 --- a/rpcserver.nim +++ b/rpcserver.nim @@ -1,2 +1,2 @@ -import rpc / server +import json_rpc / server export server