Read files macro for loading reading files to string at compile-time

Makefile for formatting and linting

Workspace for subcrates.

Moved crates to subdir and moved subcrate configs to workspace.*
This commit is contained in:
Martin Berg Alstad
2024-07-14 23:59:36 +02:00
parent 7a0cf00cbc
commit 5cd1c075a5
19 changed files with 342 additions and 95 deletions

View File

@ -1,5 +1,10 @@
#![allow(dead_code)]
#[cfg(all(feature = "derive", feature = "serde"))]
pub extern crate into_response_derive;
#[cfg(feature = "load-files")]
pub extern crate load_files;
#[cfg(feature = "axum")]
pub mod axum;
#[cfg(feature = "io")]
@ -11,6 +16,3 @@ pub mod serde;
pub mod traits;
#[cfg(feature = "iter")]
pub mod vector;
#[cfg(all(feature = "derive", feature = "serde"))]
pub extern crate derive;