-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (58 loc) · 1.28 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "rusty_igdb"
version = "2.0.0"
edition = "2021"
description = "A simple IGDB (Internet Game Database) API wrapper for Rust users"
repository = "https://github.com/yurypcf/igdb"
authors = ["yurypcfarias@gmail.com"]
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4.26", default-features = false, features = ["alloc"] }
num_enum = "0.6.1"
serde_json = "1.0.99"
[dev-dependencies]
pretty_assertions = "1"
[features]
default = [
"age_rating_content_description",
"age_rating",
"alternative_name",
"artwork",
"character_mug_shot",
"character",
"collection",
"company_logo",
"company_website",
"company",
"cover",
"external_game",
"franchise",
"game_engine_logo",
"game",
"genre",
"platform",
"search",
"theme",
]
age_rating_content_description = []
age_rating = []
alternative_name = []
artwork = []
character_mug_shot = []
character = []
collection = []
company_logo = []
company_website = []
company = []
cover = []
external_game = []
franchise = []
game_engine_logo = []
game = []
genre = []
platform = []
search = []
theme = []