diff --git a/src/chunked/decoder.rs b/src/chunked/decoder.rs index bf6f61e..ef9e11f 100644 --- a/src/chunked/decoder.rs +++ b/src/chunked/decoder.rs @@ -1,5 +1,6 @@ // Copyright 2015 The tiny-http Contributors // Copyright 2015 The rust-chunked-transfer Contributors +// Forked into ureq, 2022, from https://github.com/frewsxcv/rust-chunked-transfer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/chunked/encoder.rs b/src/chunked/encoder.rs index ef4172c..dcdd36e 100644 --- a/src/chunked/encoder.rs +++ b/src/chunked/encoder.rs @@ -1,5 +1,6 @@ // Copyright 2015 The tiny-http Contributors // Copyright 2015 The rust-chunked-transfer Contributors +// Forked into ureq, 2022, from https://github.com/frewsxcv/rust-chunked-transfer // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/chunked/lib.rs b/src/chunked/mod.rs similarity index 91% rename from src/chunked/lib.rs rename to src/chunked/mod.rs index 1e0ac9d..14c39c7 100644 --- a/src/chunked/lib.rs +++ b/src/chunked/mod.rs @@ -14,7 +14,7 @@ // limitations under the License. mod decoder; -pub use crate::decoder::Decoder; +pub use decoder::Decoder; mod encoder; -pub use crate::encoder::Encoder; +pub use encoder::Encoder;