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