Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crates io interprocess #56

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
22ecfc4
start working on a quinn via interprocess option
rklaehn May 11, 2023
d7b430f
WIP debug
rklaehn May 19, 2023
83307c0
hackish version of stripped down iroh Conn
rklaehn May 19, 2023
e63db9a
call flush on the sink
rklaehn May 19, 2023
fb009c2
remove iroh Conn again
rklaehn May 19, 2023
09628eb
WIP rpc via quinn and interprocess
rklaehn May 22, 2023
26440e3
Merge branch 'main' into interprocess
rklaehn Aug 14, 2023
596a426
fix: do not use macros in tests
rklaehn Aug 14, 2023
2e334f3
fix: do two forwarder tasks
rklaehn Aug 14, 2023
33a2e3d
fmt
rklaehn Aug 14, 2023
a3571fa
multithreaded tests
rklaehn Aug 14, 2023
737109a
Merge branch 'update-ci' into interprocess
rklaehn Aug 15, 2023
23a451d
remove interprocess from default features
rklaehn Aug 15, 2023
748aa9a
split packet using segment_size on send
rklaehn Aug 15, 2023
e410522
add segment_size to packet
rklaehn Aug 15, 2023
520a122
split packet when converting into stream
rklaehn Aug 15, 2023
6a698e7
Merge branch 'main' into interprocess
rklaehn Aug 15, 2023
7b95bd4
move the quinn flume socket into a separate optional module
rklaehn Aug 15, 2023
0414405
WIP
rklaehn Aug 15, 2023
68c0ff3
WIP
rklaehn Aug 15, 2023
ec3314c
fix: make socket name os comaptible
dignifiedquire Nov 8, 2023
a9f9bf6
cargo fmt
dignifiedquire Nov 8, 2023
0c2bbbb
happy clippy
dignifiedquire Nov 8, 2023
4f40732
cleanup: move socket name generation into the lib
dignifiedquire Nov 8, 2023
60ccb09
fix writes
dignifiedquire Nov 8, 2023
26579fa
debugging
dignifiedquire Nov 8, 2023
293817a
avoid copy
dignifiedquire Nov 8, 2023
76b15fb
multithread
dignifiedquire Nov 8, 2023
ebaa95b
more logs
dignifiedquire Nov 8, 2023
e728efd
avoid compat
dignifiedquire Nov 8, 2023
be495d9
use futures split
dignifiedquire Nov 8, 2023
f8df4ae
update interprocess
dignifiedquire Nov 8, 2023
85ba888
unique names
dignifiedquire Nov 8, 2023
066149c
make example conditional on "flume-transport" feature
rklaehn Nov 30, 2023
566765a
Use published interprocess
rklaehn Nov 30, 2023
cdfc75e
some weird compat stuff
rklaehn May 13, 2024
81bc90e
Merge branch 'main' into crates-io-interprocess
rklaehn May 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ env:
RUST_BACKTRACE: 1
RUSTFLAGS: -Dwarnings

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
lint:
runs-on: ubuntu-latest
Expand Down
Loading