-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Antes de la regex * Fixed migration never run it again * Changed Size model * Added get_size_by_title_and_type query * added get_sizes_for_category * small change * Bump v0.5 * Added changelog * making more flexible the api --------- Co-authored-by: Pepe Márquez Romero <[email protected]>
- Loading branch information
Showing
15 changed files
with
5,191 additions
and
614 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/**/target | ||
Cargo.lock | ||
.vscode/ | ||
/**/results/ | ||
/**/results/ | ||
docker/query.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
[package] | ||
name = "vinted-rs" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
edition = "2021" | ||
repository = "https://github.com/TuTarea/vinted-rs" | ||
authors = ["Pepe Márquez <[email protected]>" , "Álvaro Cabo <[email protected]>"] | ||
authors = [ | ||
"Pepe Márquez <[email protected]>", | ||
"Álvaro Cabo <[email protected]>", | ||
] | ||
description = "An async Vinted API wrapper" | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -16,24 +19,24 @@ doctest = false | |
|
||
[features] | ||
default = ["advanced_filters"] | ||
advanced_filters = ["bb8-postgres", "postgres-types"] | ||
advanced_filters = ["bb8-postgres", "postgres-types"] | ||
minimal = [] | ||
|
||
|
||
[dependencies] | ||
reqwest = { version = "0.11", features = ["json", "cookies"] } | ||
tokio = { version = "1", features = ["full"] } | ||
serde = {version = "1.0", features = ["serde_derive"] } | ||
serde = { version = "1.0", features = ["serde_derive"] } | ||
thiserror = "1.0" | ||
once_cell = "1.18" | ||
rand = "0.8" | ||
reqwest_cookie_store = "0.6" | ||
typed-builder = "0.15" | ||
fang = { version = "0.10.3" , features = ["asynk"], default-features = false } | ||
fang = { version = "0.10.3", features = ["asynk"], default-features = false } | ||
|
||
[dependencies.bb8-postgres] | ||
version = "0.8" | ||
features = ["with-serde_json-1" , "with-uuid-1" , "with-chrono-0_4"] | ||
features = ["with-serde_json-1", "with-uuid-1", "with-chrono-0_4"] | ||
optional = true | ||
|
||
[dependencies.postgres-types] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.