add fuzzer

This commit is contained in:
John Turner
2025-11-16 20:17:35 +00:00
parent fdf1f09d6f
commit 7c404ca8c5
5 changed files with 95 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
project(
'gentoo-utils',
'rust',
['rust', 'cpp'],
meson_version: '>=1.9.1',
default_options: {'rust_std': '2024', 'rust_nightly': 'enabled'},
)
@@ -16,5 +16,7 @@ gentoo_utils = static_library(
'gentoo_utils',
'src/lib.rs',
dependencies: [mon, get, itertools],
link_with: [thiserror]
link_with: [thiserror],
)
subdir('tests')