| Crates.io | sideway |
| lib.rs | sideway |
| version | 0.3.1 |
| created_at | 2024-09-01 13:21:43.311582+00 |
| updated_at | 2025-08-16 07:53:09.956783+00 |
| description | A better wrapper for using RDMA programming APIs in Rust flavor |
| homepage | |
| repository | https://github.com/RDMA-Rust/sideway |
| max_upload_size | |
| id | 1359622 |
| size | 383,250 |
Sideway is a wrapper for using RDMA programming APIs (which is written in C) in Rust flavor, built on rdma-mummy-sys. We mainly
focus on bringing the new ibverbs APIs (ibv_wr_*, ibv_start_poll, etc.) into Rust world, the traditional ibv_post_send, ibv_poll_cq APIs would be wrapped, but
no performance guarantee will be provided. Besides, libibmad, libibumad, with a lot of other rdma-core parts are beyond our scope.
Though we don't need rdma-core libraries for compiling (using rdma-core-mummy), we still require rdma-core installed when running, if not
installed, every non-inline C function would return EOPNOTSUPP.
apt install libibverbs1 librdmacm1 ibverbs-providers
dnf install librdmacm libibverbs
If your RDMA NIC manufacture provides its own userspace / kernel module packages, for example, NVIDIA MLNX_OFED, you'd better install them for better user experience and tech support.
just to use commands from Justfile, like just test-allcargo install just
Or checkout https://github.com/casey/just?tab=readme-ov-file#packages for your specific platform installation guide.
cargo-nextest for faster testingcargo install cargo-nextest --locked
Or checkout https://nexte.st/docs/installation/pre-built-binaries/ for your specific platform installation guide.
cargo-llvm-cov for coverage infocargo +stable install cargo-llvm-cov --locked
cargo build --release
cargo build --examples
Try some examples to examine your RDMA NIC status and how to use our APIs, for example, show_gids would print all GIDs on your machines, just like the script version
of show_gids.
cargo run --example show_gids
Dev | Port | Index | GID | IPv4 | Ver | Netdev
--------+------+-------+-----------------------------------------+-------------+--------+--------
rxe_0 | 1 | 0 | fe80:0000:0000:0000:5054:00ff:fe36:7656 | | RoCEv2 | enp4s0
rxe_0 | 1 | 1 | 0000:0000:0000:0000:0000:ffff:ac11:081c | 172.17.8.28 | RoCEv2 | enp4s0
rxe_0 | 1 | 2 | 0000:0000:0000:0000:0000:ffff:ac11:081d | 172.17.8.29 | RoCEv2 | enp4s0