vinted-rs 0.9.0

An async Vinted API wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
db:
	docker run --rm -d --name postgres -p 5432:5432 \
  -e POSTGRES_DB=vinted-rs \
  -e POSTGRES_USER=postgres \
  -e POSTGRES_PASSWORD=postgres \
  postgres:latest


diesel:
	DATABASE_URL=postgres://postgres:postgres@localhost/vinted-rs diesel migration run
stop:
	docker kill postgres

clippy:
	cargo clippy --all-features