Skip to content

Commit

Permalink
Huh
Browse files Browse the repository at this point in the history
  • Loading branch information
kotauskas committed Jun 12, 2024
1 parent 52c2a07 commit 3ee6169
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ exclude = [
"/Cargo.lock",
]

[[example]]
name = "unnamed_pipe_sync"
path = "examples/unnamed_pipe/sync/main.rs"

[[example]]
name = "local_socket_sync_server"
path = "examples/local_socket/sync/listener.rs"
Expand Down Expand Up @@ -73,6 +77,7 @@ doc_cfg = []
doctest-file = "1.0.0"
tokio = { version = "1.36.0", features = [
"sync",
"rt",
"net",
"time",
"io-util",
Expand All @@ -94,6 +99,7 @@ windows-sys = { version = "0.52.0", features = [
] }
tokio = { version = "1.36.0", features = [
"sync",
"rt-multi-thread",
"fs",
"net",
"time",
Expand Down
6 changes: 6 additions & 0 deletions examples/unnamed_pipe/sync/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
mod side_a;
mod side_b;

fn main() {
todo!()
}
Empty file.
Empty file.

0 comments on commit 3ee6169

Please sign in to comment.