From 33562884a1fdd9cc8d40a42fa4b7c6ef1f87c8d8 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Sun, 7 Jul 2019 11:50:53 +0200 Subject: [PATCH] std_shims -> stew --- stint.nimble | 2 +- stint/private/bitops2.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stint.nimble b/stint.nimble index ee1f8de..5865efb 100644 --- a/stint.nimble +++ b/stint.nimble @@ -8,7 +8,7 @@ skipDirs = @["tests", "benchmarks"] # TODO test only requirements don't work: https://github.com/nim-lang/nimble/issues/482 requires "nim >= 0.19", - "std_shims" + "stew" #, "https://github.com/alehander42/nim-quicktest >= 0.18.0", "https://github.com/status-im/nim-ttmath" proc test(name: string, lang: string = "c") = diff --git a/stint/private/bitops2.nim b/stint/private/bitops2.nim index 705b9df..8511077 100644 --- a/stint/private/bitops2.nim +++ b/stint/private/bitops2.nim @@ -7,7 +7,7 @@ # # at your option. This file may not be copied, modified, or distributed except according to those terms. -import ./datatypes, ./conversion, std_shims/support/bitops2 +import ./datatypes, ./conversion, stew/bitops2 export bitops2 # Bitops from support library