From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Serge Petrenko Subject: [PATCH v4 1/2] third-party: add decNumber library Date: Tue, 11 Jun 2019 18:56:47 +0300 Message-Id: <818a80c988c2ccf82961dd328864377c9b320a0c.1560268286.git.sergepetrenko@tarantool.org> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: vdavydov.dev@gmail.com Cc: georgy@tarantool.org, kostja@tarantool.org, tarantool-patches@freelists.org, Serge Petrenko List-ID: We will use it for decimal implementation in tarantool Part of #692 --- .gitmodules | 3 +++ third_party/decNumber | 1 + 2 files changed, 4 insertions(+) create mode 160000 third_party/decNumber diff --git a/.gitmodules b/.gitmodules index e3aa7d79e..9f52c3fc1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -31,3 +31,6 @@ path = third_party/luarocks url = https://github.com/tarantool/luarocks.git branch = tarantool-1.7 +[submodule "third_party/decNumber"] + path = third_party/decNumber + url = https://github.com/tarantool/decNumber.git diff --git a/third_party/decNumber b/third_party/decNumber new file mode 160000 index 000000000..ee540fca6 --- /dev/null +++ b/third_party/decNumber @@ -0,0 +1 @@ +Subproject commit ee540fca6a44b3a2df7258dc7a1ec612cbf84dce -- 2.20.1 (Apple Git-117)