imgup 4.0.2

Upload images via APIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: test run

HOSTINGS := beeimg catbox cloudinary fastpic freeimage gofile gyazo imageban imagekit imgbb imghippo imgbox imgchest imgur lensdump pixeldrain pixhost postimages ptpimg sxcu thumbsnap tixte uplio uploadcare vgy zpic
TEST_IMG := tests/fixtures/image.png

run:
	cargo run --quiet -- --help

test:
	@cargo build --quiet
	@for h in $(HOSTINGS); do \
		printf "%-12s " "$$h:"; \
		./target/debug/imgup --hosting $$h --no-clipboard $(TEST_IMG); \
	done