From 06111de155253b34e47ed2aaed1d61d08d62cc1b Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Fri, 23 Jan 2026 17:55:43 +0100 Subject: [PATCH] properly importing and exporting chronicles --- ffi.nim | 3 ++- ffi.nimble | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ffi.nim b/ffi.nim index f5a2157..0ef64ac 100644 --- a/ffi.nim +++ b/ffi.nim @@ -1,4 +1,5 @@ -import std/[atomics, tables], chronos +import std/[atomics, tables] +import chronos, chronicles import ffi/internal/[ffi_library, ffi_macro], ffi/[alloc, ffi_types, ffi_context, ffi_thread_request] diff --git a/ffi.nimble b/ffi.nimble index 6bceb79..dc39f4c 100644 --- a/ffi.nimble +++ b/ffi.nimble @@ -1,6 +1,6 @@ # ffi.nimble -version = "0.1.2" +version = "0.1.3" author = "Institute of Free Technology" description = "FFI framework with custom header generation" license = "MIT or Apache License 2.0"