diff --git a/examples/llama/src/gguf.rs b/examples/llama/src/gguf.rs index 0fa1053a..fa51074c 100644 --- a/examples/llama/src/gguf.rs +++ b/examples/llama/src/gguf.rs @@ -1,6 +1,7 @@ //! Support for the GGUF file format. //! //! Spec: https://github.com/philpax/ggml/blob/gguf-spec/docs/gguf.md +#![allow(unused)] use byteorder::{LittleEndian, ReadBytesExt}; use std::collections::HashMap; diff --git a/examples/llama_server/src/llama/gguf.rs b/examples/llama_server/src/llama/gguf.rs index 0fa1053a..fa51074c 100644 --- a/examples/llama_server/src/llama/gguf.rs +++ b/examples/llama_server/src/llama/gguf.rs @@ -1,6 +1,7 @@ //! Support for the GGUF file format. //! //! Spec: https://github.com/philpax/ggml/blob/gguf-spec/docs/gguf.md +#![allow(unused)] use byteorder::{LittleEndian, ReadBytesExt}; use std::collections::HashMap; diff --git a/examples/phi/src/gguf.rs b/examples/phi/src/gguf.rs index 0fa1053a..fa51074c 100644 --- a/examples/phi/src/gguf.rs +++ b/examples/phi/src/gguf.rs @@ -1,6 +1,7 @@ //! Support for the GGUF file format. //! //! Spec: https://github.com/philpax/ggml/blob/gguf-spec/docs/gguf.md +#![allow(unused)] use byteorder::{LittleEndian, ReadBytesExt}; use std::collections::HashMap;