listenfd 0.3.4

A simple library to work with listenfds passed from the outside (systemd/catflap socket activation)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: test

doc:
	@cargo doc

test: cargotest

cargotest:
	@cargo test

format-check:
	@rustup component add rustfmt-preview 2> /dev/null
	@cargo fmt -- --check

.PHONY: all doc test cargotest format-check