You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Via `cargo` you can add the library to your project's `Cargo.toml`
16
16
17
17
```toml
18
18
[dependencies]
19
-
vinted-rs = { version = "0.10.0",
19
+
vinted-rs = { version = "0.11.0",
20
20
#features = ["advanced_filters", "redis"]
21
21
}
22
22
```
@@ -30,7 +30,8 @@ vinted-rs = { version = "0.10.0",
30
30
31
31
### Advanced filters
32
32
33
-
> This feature requires [setting up a Postgres Database](#database-set-up) <code><imgwidth="3%"src="https://raw.githubusercontent.com/yurijserrano/Github-Profile-Readme-Logos/refs/heads/master/databases/postgresql.svg"></code>
33
+
> [!NOTE]
34
+
> This feature requires [setting up a Postgres Database](#database-set-up) <code><imgwidth="3%"src="https://raw.githubusercontent.com/yurijserrano/Github-Profile-Readme-Logos/refs/heads/master/databases/postgresql.svg"></code>
34
35
35
36
Uses the data pulled by the [scrapping module](./scrapping/vinted-db-feeder/), which is stored in the diesel [migrations](./migrations/) folder.
36
37
@@ -47,7 +48,8 @@ Uses the data pulled by the [scrapping module](./scrapping/vinted-db-feeder/), w
47
48
#### Database set-up
48
49
Advanced filtering features must require this setup before running.
49
50
50
-
1. ⚠️ `diesel-cli` installation may fail if you do not have `libpq` library installed. To install `libpq`, just install PostgreSQL package on your machine.
51
+
> [!IMPORTANT]
52
+
`diesel-cli` installation may fail if you do not have `libpq` library installed. To install `libpq`, just install PostgreSQL package on your machine.
51
53
52
54
- In `Arch` based is only necessary to install this package.
53
55
@@ -100,18 +102,18 @@ Advanced filtering features must require this setup before running.
100
102
101
103
#### Testing set-up
102
104
105
+
> [!NOTE]
103
106
> This step requires completing the [DB setup](#database-set-up)
104
107
105
108
```bash
106
109
cargo test
107
110
```
108
111
109
112
### Redis
110
-
111
113
This feature allows recovered results to be cached using a Redis instance. <code><img width="4%" src="https://raw.githubusercontent.com/yurijserrano/Github-Profile-Readme-Logos/refs/heads/master/databases/redis.svg"></code>
0 commit comments