topcron 0.1.6

A Cron log parser and viewer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default: test build

build:
    # ya toujours des infos sur thasos quand on fait un `strings` 🙁
    cargo +nightly build --release -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target x86_64-unknown-linux-gnu

test:
    cargo test

install: test
    cargo install -f --path {{ justfile_directory() }}

clean:
    cargo clean
    rm -rf target/

dev:
    cargo build