nooise 1.1.0

Ambient music generator for the terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Launch the fluid TUI/audio engine
fluid:
    cargo run

# Run all tests
test:
    cargo test

# Lint all targets
check:
    cargo clippy --all-targets

# Render a reproducible wav without audio hardware
render out="nooise.wav" seed="7":
    cargo run --quiet -- render --out {{out}} --seed {{seed}}

install:
    cargo install --path . --locked