File tree Expand file tree Collapse file tree 17 files changed +17
-17
lines changed
gix-packetline-blocking/src Expand file tree Collapse file tree 17 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/decode.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/decode.rs. Run `just copy-packetline` to update it.
2
2
3
3
use bstr:: BString ;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/encode/async_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/encode/async_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: {
4
4
io,
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/encode/blocking_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/encode/blocking_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: io;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/encode/mod.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/encode/mod.rs. Run `just copy-packetline` to update it.
2
2
3
3
use crate :: MAX_DATA_LEN ;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/lib.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/lib.rs. Run `just copy-packetline` to update it.
2
2
3
3
//! Read and write the git packet line wire format without copying it.
4
4
//!
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/line/async_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/line/async_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: io;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/line/blocking_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/line/blocking_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: io;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/line/mod.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/line/mod.rs. Run `just copy-packetline` to update it.
2
2
3
3
use bstr:: BStr ;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/read/async_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/read/async_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: io;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/read/blocking_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/read/blocking_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: io;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/read/mod.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/read/mod.rs. Run `just copy-packetline` to update it.
2
2
3
3
#[ cfg( any( feature = "blocking-io" , feature = "async-io" ) ) ]
4
4
use crate :: MAX_LINE_LEN ;
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/read/sidebands/async_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/read/sidebands/async_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: {
4
4
future:: Future ,
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/read/sidebands/blocking_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/read/sidebands/blocking_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: { io, io:: BufRead } ;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/read/sidebands/mod.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/read/sidebands/mod.rs. Run `just copy-packetline` to update it.
2
2
3
3
#[ cfg( feature = "blocking-io" ) ]
4
4
mod blocking_io;
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/write/async_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/write/async_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: {
4
4
io,
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/write/blocking_io.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/write/blocking_io.rs. Run `just copy-packetline` to update it.
2
2
3
3
use std:: io;
4
4
Original file line number Diff line number Diff line change 1
- //! DO NOT EDIT - this is a copy of gix-packetline/src/write/mod.rs. Run `just copy-packetline` to update it.
1
+ // DO NOT EDIT - this is a copy of gix-packetline/src/write/mod.rs. Run `just copy-packetline` to update it.
2
2
3
3
use crate :: Writer ;
4
4
You can’t perform that action at this time.
0 commit comments