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

update libp2p to v0.48 #661

Merged
merged 21 commits into from Oct 7, 2022
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
462c372
create new tcp_config since clone() is not supported anymore
leviathanbeak Sep 26, 2022
042894f
import and generate tcp transport as per new transport updates
leviathanbeak Sep 26, 2022
a4c5faf
move state and logic to service from behaviour
leviathanbeak Sep 30, 2022
8f5d192
output disconnect event only if this is the last connection
leviathanbeak Sep 30, 2022
3b8625e
update libp2p
leviathanbeak Sep 30, 2022
c29569b
Merge branch 'master' into leviathanbeak/update_libp2p
leviathanbeak Sep 30, 2022
049b1fc
set back the dial concucrrency factor to 1
leviathanbeak Oct 1, 2022
0c08812
Merge branch 'master' into leviathanbeak/update_libp2p
leviathanbeak Oct 1, 2022
378ec75
bump ci
leviathanbeak Oct 1, 2022
ce22a28
Merge branch 'leviathanbeak/update_libp2p' of github.com:FuelLabs/fue…
leviathanbeak Oct 1, 2022
78cd25e
setup protoc in CI
leviathanbeak Oct 1, 2022
d33c1dd
rename events
leviathanbeak Oct 3, 2022
0490474
remove commented out code
leviathanbeak Oct 3, 2022
9c0368c
add github token for protoc
leviathanbeak Oct 3, 2022
4e7923c
cleanup network name
leviathanbeak Oct 3, 2022
130a761
switch to tokio mdns
leviathanbeak Oct 4, 2022
78d4301
move to tokio only features
leviathanbeak Oct 4, 2022
681a5eb
remove async from method
leviathanbeak Oct 4, 2022
88faa27
Merge branch 'master' into leviathanbeak/update_libp2p
leviathanbeak Oct 4, 2022
7001101
document protoc as system requirement
leviathanbeak Oct 5, 2022
1bd33cd
Merge branch 'master' into leviathanbeak/update_libp2p
leviathanbeak Oct 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -109,7 +109,11 @@ jobs:
- name: Install Cargo Make
uses: davidB/rust-cargo-make@v1
with:
version: "0.36.0"
version: "0.36.0"
ControlCplusControlV marked this conversation as resolved.
Show resolved Hide resolved
- name: Install Protoc
leviathanbeak marked this conversation as resolved.
Show resolved Hide resolved
uses: arduino/setup-protoc@v1
leviathanbeak marked this conversation as resolved.
Show resolved Hide resolved
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: Swatinem/rust-cache@v2
with:
key: '${{ matrix.command }} ${{ matrix.args }}'
Expand Down