irc-bot 0.1.0

A library for writing Internet Relay Chat (IRC) bots in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

build:
	@nix-shell --run 'cargo build'

run: build
	@nix-shell --run 'cargo run'

clean:
	@nix-shell --run 'cargo clean'

fmt:
	@nix-shell --run 'cargo-fmt'

shell:
	@nix-shell