8 unstable releases (3 breaking)
0.8.0 | Oct 15, 2024 |
---|---|
0.7.1 | Sep 16, 2024 |
0.6.3 | Jul 9, 2024 |
0.6.2 | Jun 11, 2024 |
0.5.0 | Feb 28, 2024 |
#1343 in Network programming
265 downloads per month
Used in shpool
310KB
5.5K
SLoC
libshpool
libshpool contains the meat of the implementation for the shpool command line tool. You almost certainly don't want to be using it directly, but with it you can create a wrapper binary. It mostly exists because we want to add monitoring to an internal google version of the tool, but don't believe that telemetry belongs in an open-source tool. Other potential use-cases such as incorporating a shpool daemon into an IDE that hosts remote terminals could be imagined though.
Integrating
In order to call libshpool, you must keep a few things in mind.
In spirit, you just need to call libshpool::run(libshpoo::Args::parse())
,
but you need to take care of a few things manually.
- Handle the
version
subcommand. Since libshpool is a library, the output will not be very good if the library handles the versioning. - Depend on the
motd
crate and callmotd::handle_reexec()
in yourmain
function.
Dependencies
~10–21MB
~323K SLoC