systemd_service_parser 0.1.2

A simple systemd service file parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fmt:
	cargo format

clippy:
	cargo clippy -- -D warnings

test:
	cargo test

build:
	cargo build

run:
	cargo run -- test.service

all: fmt clippy test build