properly exposing chronicles and tables when importing ffi

This commit is contained in:
Ivan Folgueira Bande 2026-01-23 17:34:01 +01:00
parent bb8ed28ab0
commit d3fe7b4389
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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"