core: Make JSON support configurable

This adds a `json` feature flag, which allows users to disable JSON
support if needed.
This commit is contained in:
Pekka Enberg 2024-11-16 09:22:09 +02:00
parent fe75ed275e
commit cd5db55cf2
5 changed files with 25 additions and 7 deletions

View file

@ -1,6 +1,7 @@
mod error;
mod function;
mod io;
#[cfg(feature = "json")]
mod json;
mod pseudo;
mod schema;