chore: add rust-libp2p@v0.54.0 to perf
This commit is contained in:
parent
2748dde76a
commit
434938271f
|
@ -0,0 +1,22 @@
|
|||
commitSha :=
|
||||
|
||||
all: perf
|
||||
|
||||
perf: rust-libp2p-${commitSha}/target/release/perf
|
||||
cp ./rust-libp2p-${commitSha}/target/release/perf .
|
||||
|
||||
rust-libp2p-${commitSha}/target/release/perf: rust-libp2p-${commitSha}
|
||||
docker run --rm --user "$(shell id -u):$(shell id -g)" -v "$(shell pwd)/rust-libp2p-${commitSha}":/usr/src/myapp -w /usr/src/myapp rust:1.73 cargo build --release --bin perf
|
||||
|
||||
rust-libp2p-${commitSha}: rust-libp2p-${commitSha}.zip
|
||||
unzip -o rust-libp2p-${commitSha}.zip
|
||||
|
||||
rust-libp2p-${commitSha}.zip:
|
||||
wget -O $@ "https://github.com/libp2p/rust-libp2p/archive/${commitSha}.zip"
|
||||
|
||||
clean:
|
||||
rm rust-libp2p-*.zip
|
||||
rm -rf rust-libp2p-*
|
||||
rm perf
|
||||
|
||||
.PHONY: all clean
|
|
@ -66,5 +66,13 @@
|
|||
"transportStacks": [
|
||||
"tcp"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "v0.54",
|
||||
"implementation": "rust-libp2p",
|
||||
"transportStacks": [
|
||||
"tcp",
|
||||
"quic-v1"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue